TA Finance
  1. Services
TA Finance
  • Welcome!
  • Auth check
    • Check
      GET
  • Transactions
    • List
      GET
    • Create
      POST
    • Delete
      DELETE
  • Statements
    • Info
  • Counterparty
    • Info
  • Services
    • List
      GET
    • Create
      POST
  • Accounts
    • List
      GET
    • Create
      POST
  • Organizations
    • List
      GET
    • Create
      POST
  • Statistics
    • P&L
      POST
  1. Services

Create

POST
/api/v1/service
Creates a new service entry by capturing key details such as service name and related organizational or counterparty associations. This operation supports the expansion of the platform’s service offerings.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/service' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "name": "New service",
        "organizationId": 26,
        "counterpartyId": null
    }
]'
Response Response Example
{
  "done": true,
  "created": [
    20
  ]
}
Modified at 2025-04-02 17:07:28
Previous
List
Next
List
Built with