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>"
}
}
]
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>"
}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful operation
The response is of type object[]
.
Was this page helpful?