Skip to main content
GET
/
api
/
v3
/
merchant_templates
/
list
List Merchant Templates
curl --request GET \
  --url https://api-staging.unbridaled.ai/api/v3/merchant_templates/list \
  --header 'Authorization: Bearer <token>'
{
  "merchant_templates": [
    {
      "uuid": "DEFAULT_IDEAL",
      "merchant_uuid": null,
      "group": "DEFAULT",
      "position": 1,
      "label": "IDEAL",
      "color": "F",
      "clarity": "VS1",
      "grade_name": "ideal",
      "order": null
    },
    {
      "uuid": "DEFAULT_PREMIUM",
      "merchant_uuid": null,
      "group": "DEFAULT",
      "position": 2,
      "label": "PREMIUM",
      "color": "H",
      "clarity": "VS2",
      "grade_name": "excellent",
      "order": null
    },
    {
      "uuid": "DEFAULT_STANDARD",
      "merchant_uuid": null,
      "group": "DEFAULT",
      "position": 3,
      "label": "STANDARD",
      "color": "I",
      "clarity": "SI1",
      "grade_name": "very good",
      "order": null
    }
  ],
  "total": 3,
  "offset": 0,
  "limit": 100
}

Authorizations

Authorization
string
header
required

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

Query Parameters

offset
integer
default:0

How many results to skip. Used for pagination. Defaults to 0.

limit
integer
default:100

How many results to return. Defaults to 100.

Response

200 - application/json

OK

merchant_templates
object[]
total
integer
offset
integer
limit
integer