Account profile: name, address, phone, emails, company/VAT. company and account_type are read-only in this endpoint.
Request
Add parameter in header API-key
Example:API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/profile/' \
--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": {
"account_type": "company",
"company": "string",
"company_vat_number": "string",
"gender": "string",
"firstname": "string",
"lastname": "string",
"address": "string",
"house_number": "string",
"zipcode": "string",
"city": "string",
"country_code": "string",
"phone": "string",
"email": "string",
"email_invoices": "string"
}
}
Modified at 2026-04-09 12:56:00