Skip to content

Retrieving a list of accessible customers at Inxmail Professional

GET /integrations/inxmail-professional/accessible-customers

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/' -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: ...

{
   "_embedded" : {
      "inx:accessible-customers" : [
         {
            "_links" : {
               "self" : {
                  "href" : "https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers/myka"
               }
            },
            "name" : "myka"
         }
      ]
   },
   "_links" : {
      "curies" : [
         {
            "href" : "https://apidocs.inxmail.com/nxp/rest/v1/relations/{rel}",
            "name" : "inx",
            "templated" : true
         }
      ],
      "self" : {
         "href" : "https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers"
      }
   }
}