Skip to content

Retrieving a single Inxmail Professional list

GET /integrations/inxmail-professional/accessible-customers/{customerName}/list/{listId}

Request Parameters

Parameter Required In Description
customerName yes path The name of accessible customer
listId yes path The ID of the Inxmail Professional list

Response Structure

Path Type Description
name String The name of the Inxmail Professional list
id Number The ID of the Inxmail Professional list

Basic example

Request:

$ curl 'https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers/myka/lists/3' -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: ...

{
   "id" : 3,
   "name" : "mailing list",
   "_links" : {
      "self" : {
         "href" : "https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/accessible-customers/myka/lists/3"
      }
   }
}