Skip to main content
GET
/
partners
/
{sellerId}
/
buyers
/
{buyerId}
Get a buyer (business data only).
curl --request GET \
  --url https://api.novatrade24.com/v1/partners/{sellerId}/buyers/{buyerId} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "vatNumber": "<string>",
  "companyName": "<string>",
  "address": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "street": "<string>",
    "postCode": "<string>",
    "city": "<string>",
    "country": "DE"
  },
  "kycMode": "MARKETPLACE_LED",
  "status": "ACTIVE",
  "version": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

OAuth 2.0 client_credentials grant via Keycloak service account. Clients are provisioned per IntegrationOrganization in the nt24-idp realm.

Path Parameters

sellerId
string<uuid>
required

UUID of the seller trade partner (must be in caller's authorized list).

buyerId
string<uuid>
required

UUID of the buyer trade partner.

Response

OK

uuid
string<uuid>
required
vatNumber
string
required
companyName
string
required
address
object
required
kycMode
enum<string>
required

MARKETPLACE_LED (Mode A) — partner provides KYC data; NT24 stores + runs VIES only. NT24_LED (Mode B) — NT24 runs full verification (iDenfy + AML) and generates a profile.

Available options:
MARKETPLACE_LED,
NT24_LED
status
enum<string>
required
Available options:
ACTIVE,
BLOCKED
version
integer
required

Optimistic-concurrency version.

createdAt
string<date-time>
required
updatedAt
string<date-time>
required