getneo
  1. Counterparties
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. Counterparties

Get all counterparties

Demo
https://client.demo.getneo.com
Demo
https://client.demo.getneo.com
GET
/api/v3/counterparties
List all counterparties available to the user in the current corp.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://client.demo.getneo.com/api/v3/counterparties'
Response Response Example
[
    {
        "accounts": [
            {
                "accountNumber": "string",
                "actions": [
                    "string"
                ],
                "additionalCountryAccountInfo": "string",
                "alias": "string",
                "bank": "string",
                "bankAccountId": "stringstringstringstri",
                "bankCode": "string",
                "bic_swift": "NEOPESBB",
                "country": "ESP",
                "currencies": [
                    "EUR"
                ],
                "iban": "string",
                "intermediaryBank": "string",
                "intermediaryBankAccounts": [
                    {
                        "currency": "EUR",
                        "bicSwift": "NEOPESBB"
                    }
                ],
                "isBeneficiary": true,
                "isPayer": true,
                "operatorInfo": "string",
                "parentId": "stringstringstringstri",
                "recurringReference": "string",
                "routingNumber": "string",
                "sortCodeUK": "string"
            }
        ],
        "actions": [
            "string"
        ],
        "address1": "string",
        "address2": "string",
        "alias": "string",
        "city": "string",
        "country": "ESP",
        "county": "string",
        "currencies": [
            "EUR"
        ],
        "draft": {},
        "email": "string",
        "firstName": "string",
        "id": "stringstringstringstri",
        "isBeneficiary": true,
        "isPayer": true,
        "isSelf": true,
        "lastName": "string",
        "linkedDocuments": {
            "count": 0,
            "uri": "http://example.com"
        },
        "name": "string",
        "paymentReason": [
            "string"
        ],
        "postCode": "string",
        "primaryType": "string",
        "shortfall": 0,
        "shortfallCurrencyCode": "EUR",
        "state": "draft",
        "subsidiary": "string",
        "subType": "string",
        "thirdPartyType": "string",
        "thirdPartyTypeOther": "string",
        "vanityId": "string"
    }
]

Request

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

Responses

🟢200OK
application/json
OK
Body

🟠401Unauthorized
🟠403Forbidden
Modified at 2025-06-27 10:58:53
Previous
End session
Next
Get counterparty by ID
Built with