Admin API
Conditions
TimelineComments
List all items
Returns a list of items and their details given parameters. Used by merchants to view their inventory.
curl --request GET \
--url https://app.supercycle.com/api/v1/items \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"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>"
}
]
}
],
"nextPage": null
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.
x <= 100
Cursor token to fetch next page of results.
Filter items by Shopify variant SKU
Filter items by serial
Response
Numeric ID of the item.
processed
, unprocessed
available
, unavailable
, sold
, retired
Numeric ID of the condition.
Date and time the condition was created.
Severity key of the condition.
Tone of the condition.
Title of the condition.
ID of the condition. May be null if no condition is set.
Timeline events for this item
Numeric ID of the timeline event.
Numeric ID of the resource associated with the event.
Type of the resource (e.g., Item, Rental, ReturnOrder).
Type of the timeline event.
Additional data associated with the timeline event.
Timestamp when the event was created.
Timestamp when the event was last updated.
Author of the timeline event.
curl --request GET \
--url https://app.supercycle.com/api/v1/items \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"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>"
}
]
}
],
"nextPage": null
}