getneo
  1. Auth
getneo
  • Introduction
  • API examples
  • Technical topics
    • API structure
    • HTTP headers
    • Decoupled responses
    • Validation failures (418)
  • Endpoints
    • Auth
      • Get service bearer token (password)
        GET
      • Change tenant
        GET
      • End session
        GET
    • Counterparties
      • Get all counterparties
        GET
      • Get counterparty by ID
        GET
      • Get draft counterparty by ID
        GET
      • Submit counterparty draft
        POST
      • Update counterparty draft
        POST
      • Delete a counterparty draft
        DELETE
      • Add account to counterparty
        POST
      • Update counterparty account
        PATCH
      • Export counterparty data
        POST
    • Payments
      • Get all payments
        GET
      • Get a payment by ID
        GET
      • Make a payment (deposit, withdrawal or internal)
        POST
  1. Auth

Change tenant

Demo
https://auth.demo.getneo.com
Demo
https://auth.demo.getneo.com
GET
/api/v2/identity/changeClient/{id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://auth.demo.getneo.com/api/v2/identity/changeClient/'
Response Response Example
{
    "id": "stringstringstringstri",
    "name": "string",
    "username": "user@example.com",
    "currentCulture": "en",
    "currentClientId": "stringstringstringstri",
    "currentClientName": "string"
}

Request

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

Responses

🟢200OK
application/json
Headers

Body

🟠401Unauthorized
🟠403Forbidden
Modified at 2025-07-24 14:33:16
Previous
Get service bearer token (password)
Next
End session
Built with