Skip to main content

Get Distributor by ID

Retrieve a specific distributor by its ID.

Endpoint: GET /api/v1/integration/distributors/{id}

Authentication: Required (Bearer token)

Required Headers:

Authorization: Bearer <access_token>
X-Target-Server: integration

Path Parameters

ParameterTypeRequiredDescription
idstring (UUID)YesDistributor ID

Response

Status: 200 OK

Returns the distributor object.

{
"id": "39e8003c-6342-4fd3-97a1-3f2a7b437d0a",
"node_id": "e40efce4-38a3-46c4-a202-e8db95d0409c",
"meta": {
"host": "https://example.com222",
"path": "/webhook",
"method": "GET",
"authentication": {
"type": 1,
"username": "user",
"password": "pass"
}
},
"created_at": "2025-12-23T23:16:10.419732Z",
"updated_at": "2025-12-23T23:19:58.364051Z"
}

Example cURL Request

curl -X GET https://<base-url>/api/v1/integration/distributors/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"