GET
/
domains
/
{id}
curl --request GET \
  --url https://api.reqlick.com/domains/{id} \
  --header 'Authorization: Bearer <token>'
[
  {
    "slug": "example.com",
    "verified": true,
    "primary": false,
    "target": "<string>",
    "type": "redirect"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Workspace URL

Response

200
application/json
Get all domains
slug
string
Example:

"example.com"

verified
boolean
Example:

true

primary
boolean
Example:

false

target
string
type
string
Example:

"redirect"