GET
/
api
/
ext
/
v1
/
collections
curl --request GET \
  --url https://staging-api.covver.io/api/ext/v1/collections \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "deletedAt": "2023-11-07T05:31:56Z",
    "status": "Active",
    "slug": "<string>",
    "title": "<string>",
    "description": "<string>",
    "image": "<string>",
    "imageMobile": "<string>",
    "rewardType": "Coins",
    "personalizationsUsed": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

companyId
string

Response

200
application/json
Default Response
id
string
required
status
enum<string>
required
Available options:
Active,
Pending,
Draft,
Disabled
slug
string
required
title
string
required
description
string
required
rewardType
enum<string>
required
Available options:
Coins,
Gifts
deletedAt
string | null
image
string | null
imageMobile
string | null
personalizationsUsed
string[]