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

Export counterparty data

Demo
https://client.demo.getneo.com
Demo
https://client.demo.getneo.com
POST
/api/v3/counterparties/export
Receive a CSV export of all available counterparty data, with selected columns.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://client.demo.getneo.com/api/v3/counterparties/export' \
--header 'Content-Type: application/json' \
--data-raw '[
    "string"
]'
Response Response Example
Status,Counterparty name,Counterparty alias,Country,Type,Subtype,Beneficiary,Payer,Currencies,Address line 1,Address line 2,City,County / State,Postcode,Contact name,Contact email,Payment reason,Account Alias,Bank,Iban,BIC/SWIFT,Account Number,Sort Code,CNAPS,Intermediary Bank,Routing Number,Country,Currency,Payer (Account),Beneficiary (Account),Recurring Reference
Active,Neo Payment Factory,NeoPay,ES,corporate,internal,Yes,Yes,"EUR,GBP,USD",Travessera de Gràcia n°18,Floor 3,Barcelona,Catalonia,08021,Neo,info@getneo.com,,BBVA,NPF,ES00....00,NEOPESBB,,,,,,ES,EUR,Yes,Yes,

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

🟢200OK
text/csv
OK
Body

🟠401Unauthorized
🟠403Forbidden
Modified at 2025-07-16 11:34:23
Previous
Update counterparty account
Next
Get all payments
Built with