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;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>'
Responses
application/json {
"status": 200,
"status_description": "Request successful",
"data": {
"profiles": [
{
"id": 1000,
"alias": "My custom profile",
"company": "Example company",
"name": "John Doe",
"default": {
"owner": true,
"admin": true,
"tech": true,
"billing": true
}
}
]
}
}
Modified at 2024-06-27 10:09:03