API를 사용하여 구독 수행 performing-subscriptions
방법 1: 서비스에 프로필 가입
프로필을 검색하려면 GET 요청을 수행하십시오.
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY> \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
프로필에 대한 구독 URL을 반환합니다.
{
...
"postalAddress":...,
"preferredLanguage": "none",
"subscriptions": {
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY>/subscriptions/"
},
...
}
페이로드 내에 원하는 서비스 기본 키가 있는 구독 URL에 대해 POST 요청을 수행합니다.
-X POST https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY>/subscriptions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>' \
-i
-d '{"service":{"PKey":"<PKEY>"}}'
서비스 노드가 완료된 업데이트된 프로필을 반환합니다.
{
...
"service": {
"PKey": "<PKEY>",
"title": "Sport Newsletter (SVC1)"
},
"serviceName": "",
"subscriber": ...,
...
}
방법 2: 서비스 가입자에 프로필 추가
서비스를 검색하려면 GET 요청을 수행하십시오.
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/service/<PKEY> \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
서비스에 대한 구독 URL을 반환합니다.
{
...
"messageType": "email",
"name": "SVC1",
"subscriptions": {
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/service/<PKEY>/subscriptions/"
},
...
},
페이로드 내에 원하는 POST 기본 키를 사용하여 구독 URL에 대한 프로필 요청을 수행합니다.
-X POST https://mc.adobe.io/<ORGANIZATION>/campaign//profileAndServices/service/<PKEY>/subscriptions/ \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>' \
-i
-d '{"subscriber":{"PKey":"<PKEY>"}}'
구독자 노드가 완료된 업데이트된 서비스를 반환합니다.
{
...
"service": ...,
"serviceName": "",
"subscriber": {
"PKey": "<PKEY>",
...
},
}
recommendation-more-help
3ef63344-7f3d-48f9-85ed-02bf569c4fff