Get customer information
GET /v1/customer
Get customer information
Retrieve information about the current authenticated customer.
Example
$ curl --header "Authorization: Bearer {token}" \
--header "Accept: application/json" \
https://api.checkdomain.de/v1/customer
Response
HTTP/1.1 200 OK
{
"customer_number": "CD112233",
"first_name": "John",
"last_name": "Doe",
"street": "Große Burgstraße 27/29",
"postal_code": "23552",
"city": "Lübeck",
"country": {
"iso": "DE",
"name": "Germany"
},
"email": "sales@checkdomain.de",
"phone": "+49 451 709970",
"mobile_phone": null,
"fax": null,
"_links": {
"self": {
"href": "/v1/customer"
},
"domains": {
"href": "/v1/domains"
},
"contacts": {
"href": "/v1/contacts"
},
"invoices": {
"href": "/v1/invoices"
}
}
}
Response
Name |
Type |
Required |
Description |
customer_number
|
string
|
|
Customer Number
|
first_name
|
string
|
|
First name
|
last_name
|
string
|
|
Last name
|
street
|
string
|
|
Street
|
postal_code
|
string
|
|
Postal code
|
city
|
string
|
|
City
|
country
Show properties
|
model
|
|
object (Country)
|
Properties of Country
Name |
Type |
Required |
Description |
iso
|
string
|
|
ISO Code
|
name
|
string
|
|
Name
|
|
email
|
string
|
|
eMail Address
|
phone
|
string
|
|
Phone number
|
mobile_phone
|
string
|
|
Mobile phone number
|
fax
|
string
|
|
Fax number
|
Status-Codes