Get Order
Returns a single Order.
Request
HTTP Method: GET
URI Path: /v3/orders/{id}
Note
For all returned data attributes, see Order Object.
URI Query Parameters
Name |
Type |
Is Required? |
Description |
|---|---|---|---|
id |
|
Yes |
Unique ID identifier of the Order. |
Examples
http
GET /v3/orders/d9fb4666-cf4b-4409-8144-cb7535924db8 HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
curl
curl -i -X GET https://api.didww.com/v3/orders/d9fb4666-cf4b-4409-8144-cb7535924db8 -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json"
response
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json
{
"data": {
"id": "d9fb4666-cf4b-4409-8144-cb7535924db8",
"type": "orders",
"attributes": {
"amount": "6.0",
"status": "completed",
"created_at": "2023-10-26T11:06:28.989Z",
"description": "DID",
"reference": "EBX-118849",
"external_reference_id": null,
"items": [
{
"type": "did_order_items",
"attributes": {
"qty": 1,
"nrc": "0.0",
"mrc": "5.0",
"prorated_mrc": false,
"billed_from": "2023-10-26",
"billed_to": "2023-11-26",
"did_group_id": "2ef40a84-dfd4-45bb-8519-b4a7ebb74453"
}
}
],
"callback_method": null,
"callback_url": null
}
},
"meta": {
"api_version": "2026-04-16"
}
}
http
GET /v3/orders/103e98b9-509c-4dcb-8c6d-88fa491948df HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
curl
curl -i -X GET https://api.didww.com/v3/orders/103e98b9-509c-4dcb-8c6d-88fa491948df -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json"
response
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json
{
"data": {
"id": "103e98b9-509c-4dcb-8c6d-88fa491948df",
"type": "orders",
"attributes": {
"amount": "3.0",
"status": "completed",
"created_at": "2026-03-05T13:44:19.396Z",
"description": "Emergency",
"reference": "OUZ-611729",
"external_reference_id": null,
"items": [
{
"type": "emergency_order_items",
"attributes": {
"qty": 1,
"nrc": "1.5",
"mrc": "1.5",
"prorated_mrc": false,
"billed_from": "2026-03-05",
"billed_to": "2026-04-04",
"emergency_calling_service_id": "dba34c89-6cd5-403c-b284-f7d5ae33c5d7"
}
}
],
"callback_method": null,
"callback_url": null
}
},
"meta": {
"api_version": "2026-04-16"
}
}
Other Responses
Code |
Success |
Description |
|---|---|---|
404 |
No |
|
401 |
No |