Retrieve a list of all contact profiles in your account.
Request
Add parameter in header API-Key
Example:API-Key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/domains/contacts' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"profiles": [
{
"id": 0,
"alias": "string",
"company": "string",
"name": "string",
"default": {
"owner": true,
"admin": true,
"tech": true,
"billing": true
}
}
]
}
}
Modified at 2025-12-10 15:04:29