GET
/
customdomains
List all custom domains
curl --request GET \
  --url https://api.blaxel.ai/v0/customdomains \
  --header 'Authorization: Bearer <token>'
[
  {
    "metadata": {
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "createdBy": "<string>",
      "updatedBy": "<string>",
      "displayName": "<string>",
      "labels": {},
      "name": "<string>",
      "workspace": "<string>"
    },
    "spec": {
      "cnameTarget": "<string>",
      "lastVerifiedAt": "<string>",
      "status": "<string>",
      "txtRecords": {},
      "verificationError": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

successful operation

The response is of type object[].