Skip to main content

Get distributor by id

GET /v1/distributor/:id

Retrieves a single distributor by its unique identifier. The response includes all standard attributes such as name, tenant reference, activation status, address details, and timestamps for creation and last update. This endpoint is used to view a specific distributor’s configuration and state.

Response Example

{
"address": {
"line2": "",
"street": "",
"zip": "",
"city": "",
"country": "",
"state": ""
},
"_id": "distributor-id-1",
"name": "Example Distributor",
"tenant": "tenant-id-1",
"active": false,
"created": "2025-10-21T15:00:59.342Z",
"updated": "2025-10-21T15:01:42.135Z",
"assignedProductsCount": 0
}