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

string

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"
    }
}

Other Responses

Code

Success

Description

404

No

Not Found

401

No

Unauthorized