GET
/
items
/
{item_id}
curl --request GET \
  --url https://app.supercycle.com/api/v1/items/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "activeRentalId": null,
  "condition": null,
  "conditionId": null,
  "imageUrl": null,
  "productTitle": "<string>",
  "serial": null,
  "sequentialId": 123,
  "shopifyProductId": null,
  "shopifyVariantId": null,
  "status": "processed",
  "tags": [
    "<string>"
  ],
  "variantTitle": null,
  "visibility": "available",
  "timeline_events": [
    {
      "id": 123,
      "eventableId": 123,
      "eventableType": "<string>",
      "eventType": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "author": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

item_id
integer
required

Numeric ID of the item to retrieve.

Response

200 - application/json
Expected response to a valid request
id
integer
required

Numeric ID of the item.

createdAt
string
required
activeRentalId
integer | null
required
productTitle
string
required
serial
string | null
required
sequentialId
integer
required
shopifyVariantId
integer | null
required
status
enum<string>
required
Available options:
processed,
unprocessed
tags
string[]
required
variantTitle
string | null
required
visibility
enum<string>
required
Available options:
available,
unavailable,
sold,
retired
condition
object | null
conditionId
integer | null

ID of the condition. May be null if no condition is set.

imageUrl
string | null
shopifyProductId
integer | null
timeline_events
object[]

Timeline events for this item