Retrieving a single accessible customer¶
GET /integrations/inxmail-professional/accessible-customers/{customerName}
Request Parameters¶
Parameter | Required | In | Description |
---|---|---|---|
customerName | yes | path | The name of accessible customer |
Response Structure¶
Path | Type | Description |
---|---|---|
name | String | The name of the accessible customer |
Basic example¶
Request:
$ curl 'https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers/myka' -i -X GET \
-H 'Authorization: Basic <base64Encoded user:password>'
Response:
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: ...
{
"name": "myka",
"_links" : {
"self" : {
"href" : "https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers/myka"
}
}
}