GET
/
admin
/
requests
{
  "requests": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "type": "<string>",
      "data": {},
      "submitter_id": "<string>",
      "reviewer_id": "<string>",
      "reviewer_note": "<string>",
      "status": "<string>",
      "seller": {
        "id": "<string>",
        "name": "<string>"
      }
    }
  ],
  "count": 123,
  "offset": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
number

The number of items to return. Default 50.

offset
number

The number of items to skip before starting the response. Default 0.

fields
string

Comma-separated fields to include in the response.

type
enum<string>

Filter by request type

Available options:
product,
product_collection,
product_category,
seller,
review_remove,
product_type,
product_tag
status
enum<string>

Filter by request status

Available options:
pending,
rejected,
accepted

Response

200 - application/json

OK

The response is of type object.