Retrieving a list of test profiles for a Mailing Synchronization¶
GET /integrations/inxmail-professional/mailing-sychronizations/{id}/test-profiles
Request Parameters¶
Parameter | Required | In | Description |
---|---|---|---|
id | yes | path | The ID of the Mailing Synchronization the test profiles should be retrieved for |
Response Structure¶
Path | Type | Description |
---|---|---|
id | Number | The ID of the test-profile |
description | String | The description given to the test-profile |
Basic example¶
Request:
$ curl 'https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/mailing-synchronizations/0b405924-a96a-4c52-a20e-488d554f518a/test-profiles/' -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:test-profiles": [
{
"id": 5,
"description": "Testprofile example"
},
{
"id": 13,
"description": "Another testprofile"
},
{
"id": 14,
"description": "And another"
}
]
},
"_links": {
"self": {
"href": "https://myka-1.my-api.inxmail.de/integrations/inxmail-professional/mailing-synchronizations/e12da055-9d95-4287-a13c-a329d9898d09/test-profiles"
},
"curies": [
{
"href": "https://apidocs.inxmail.com/nxp/rest/v1/relations/{rel}",
"name": "inx",
"templated": true
}
]
}
}