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

List

GET
/api/v1/service/list
Retrieves a list of services associated with a specific organization or counterparty, based on provided filtering parameters. It facilitates the exploration and integration of available financial service features.

Request

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

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/service/list' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "list": [
    {
      "id": 19,
      "name": "Ads Services",
      "counterpartyId": null,
      "organizationId": 26,
      "createdAt": "2025-03-31T14:31:07.287Z",
      "updatedAt": "2025-03-31T14:31:07.287Z"
    }
  ]
}
Modified at 2025-04-02 17:06:21
Previous
Info
Next
Create
Built with