Skip to main content
GET
/
seller
/
orders
/
{id}
Get order
curl --request GET \
  --url https://api.managem.co.uk/seller/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "sellerId": "<string>",
  "purchaseId": "<string>",
  "deliveryCharge": 123,
  "subtotal": 123,
  "total": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "items": [
    {
      "id": "<string>",
      "listingId": "<string>",
      "orderId": "<string>",
      "urn": "<string>",
      "price": 123,
      "quantity": 123,
      "condition": "<string>",
      "language": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "item": {
        "urn": "<string>",
        "type": "card",
        "game": "Pokemon",
        "title": "<string>",
        "name": "<string>",
        "rarity": "<string>",
        "set": {
          "name": "<string>",
          "urn": "<string>",
          "counts": {
            "printed": 123,
            "total": 123
          },
          "references": [
            "<string>"
          ],
          "size": 123,
          "symbol": {
            "url": "<string>"
          },
          "released": "<string>"
        },
        "series": {
          "name": "<string>",
          "urn": "<string>"
        },
        "images": [
          {
            "urn": "<string>",
            "orientation": "portrait",
            "url": "<string>",
            "illustrator": "<string>"
          }
        ],
        "alternatives": [
          "<string>"
        ],
        "metadata": [
          {
            "name": "<string>",
            "value": "<string>",
            "detail": [
              "<unknown>"
            ]
          }
        ],
        "number": "<string>",
        "description": "<string>",
        "price": 123,
        "available": 1
      },
      "status": "ACCEPTED",
      "variants": [],
      "comment": "<string>",
      "shipmentId": "<string>"
    }
  ],
  "shipments": [
    {
      "id": "<string>",
      "orderId": "<string>",
      "trackingNumber": "<string>",
      "trackingStatus": "<string>",
      "trackingStatusDetail": "<string>",
      "trackingUrl": "<string>",
      "carrier": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "attachments": [
        {
          "id": "<string>",
          "url": "<string>",
          "hidden": true
        }
      ]
    }
  ],
  "purchase": {
    "deliveryAddress": {
      "name": "<string>",
      "city": "<string>",
      "country": "<string>",
      "line1": "<string>",
      "line2": "<string>",
      "postal_code": "<string>",
      "state": "<string>"
    },
    "user": {
      "id": "<string>",
      "username": "<string>",
      "reviews": 123,
      "rating": 123,
      "score": 123,
      "sales": 123,
      "purchases": 123,
      "joined": "2023-11-07T05:31:56Z",
      "avatar": "<string>",
      "cover": "<string>",
      "profile": "<string>"
    }
  },
  "cases": [
    {
      "id": "<string>",
      "workflowId": "<string>",
      "reason": "SNAD",
      "status": "OPEN",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "outcomes": [
        {
          "id": "<string>",
          "type": "RETURN",
          "party": "SELLER",
          "status": "PENDING",
          "caseId": "<string>",
          "amount": 1,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "comment": "<string>",
          "deliveryAddress": "<unknown>"
        }
      ],
      "attachments": [
        {
          "url": "<string>",
          "party": "SELLER",
          "createdAt": "2023-11-07T05:31:56Z"
        }
      ],
      "orderId": "<string>",
      "comment": "<string>"
    }
  ],
  "adjustments": [],
  "transfers": [],
  "reviews": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Order ID

Response

Order

Order with items and shipments for sellers

id
string<cuid2>
required

Unique identifier for the order

sellerId
string
required

Seller user ID

purchaseId
string
required

Purchase ID

deliveryCharge
integer
required

Delivery charge in pence

subtotal
integer
required

Subtotal in pence

total
integer
required

Total in pence

createdAt
string<date-time> | null
required

Timestamp when the order was created

updatedAt
string<date-time> | null
required

Timestamp when the order was last updated

items
Order Item · object[]
required

Items included in the order with item details

shipments
object[]
required

Shipments for the order

purchase
object
required
cases
object[]
required

Cases associated with the order

adjustments
object[]

Order-level adjustments (e.g., delivery refunds)

transfers
object[]

Payouts and reversals associated with this order

reviews
object

Reviews for the order keyed by the reviewer's user ID with their rating