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

Get service bearer token (password)

Demo
https://auth.demo.getneo.com
Demo
https://auth.demo.getneo.com
GET
/api/v1/auth/login
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://auth.demo.getneo.com/api/v1/auth/login' \
--header 'Authorization: Plaintext (username) (service-password)'
Response Response Example
200 - Example 1
{
    "id": "stringstringstringstri",
    "name": "string",
    "username": "user@example.com",
    "currentCulture": "en",
    "currentClientId": "stringstringstringstri",
    "currentClientName": "string",
    "corps": [
        {
            "id": "stringstringstringstri",
            "name": "string",
            "lastAccessed": "2019-08-24T14:15:22Z",
            "isCurrent": true,
            "tradingState": "active",
            "paymentState": "active"
        }
    ],
    "permissions": {
        "property1": {
            "property1": {
                "self": "grant",
                "others": "grant"
            },
            "property2": {
                "self": "grant",
                "others": "grant"
            }
        },
        "property2": {
            "property1": {
                "self": "grant",
                "others": "grant"
            },
            "property2": {
                "self": "grant",
                "others": "grant"
            }
        }
    }
}

Request

Header Params

Responses

🟢200OK
application/json
Body

🟠418Validation Failure
Modified at 2025-07-24 14:32:25
Previous
Auth
Next
Change tenant
Built with