Profiles contain all customer data. Eg. username, email.
Return a list of all accesible profiles.
GET /rest/profiles
[
{
"id": 1,
"_links": {
"href": "https://d9tready.com/rest/profiles/1",
"rel": "self"
}
},
...
]
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
Retrieve a single profile resource.
GET /rest/profiles/1
{
"username": "demo",
"vatNo": "DE1234567890",
"address": "Musterstr. 123",
"salutation": "m",
"fullName": "Max Mustermann",
"id": 38,
"invoiceable": true,
"city": "Musterhausen",
"mobile": "",
"country": "DE",
"dateOfBirth": "1970-01-01",
"postalCode": "12345",
"email": "demo@d9tready.com"
}
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
| 404 NOT FOUND | Resource not found |