List logos
Returns a collection of logos.
Filtering — ?filter[id]=1,2,3, ?filter[state]=completed.
Expanding — ?expand=production_method.
AuthorizationbearerAuth
Authorization
bearerAuth OAuth2 access token — how to obtain one is described under Setup → Authentication.
In: header
Query Parameters
Page number — see Basic Usage → Pagination.
1Value in
- "pending"
- "completed"
- "failed"
Header Parameters
The API only responds with JSON — this header is mandatory on every request (see Setup → Headers).
"application/json"Value in
- "application/json"
Response Body
application/json
curl -X GET "https://example.com/logos" \ -H "Accept: application/json"{ "data": [ { "id": 0, "name": "string", "state": "pending", "production_method": { "id": 0, "handle": "string", "name": "string", "description": "string" }, "preview_url": "http://example.com", "created_at": "2019-08-24T14:15:22Z" } ], "meta": { "current_page": 0, "per_page": 0, "total": 0 }}Show a product GET
Previous Page
Create a logo POST
Creates a logo from an [uploaded media object](/docs/checkout/2022-02-01/endpoints/media/uploadMedia) or a public URL. You have to choose **exactly one** of `media.id` or `media.url`. Processing is asynchronous — listen to `logo.completed` / `logo.failed` (see [Basic Usage → Webhooks](/docs/checkout/2022-02-01/basic/webhooks)).