Skip to main content

get opt-out status list for communication attributes

get opt-out status list for communication attributes

Path Parameters
    departmentUUID string required
Request Body required
    communicationList object[]
  • Array [
  • communicationType string
    communicationValue string
    okToCommunicate boolean
    customerUUID string
  • ]
Responses

OK


Schema
    optOutStatusList object[]
  • Array [
  • communication object
    communicationType string
    communicationValue string
    okToCommunicate boolean
    customerUUID string
    optOutStatus object
    optOutState string
    canSendOptinRequest boolean
    timeOfChange date-time
  • ]
  • requestUUID string
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /department/:departmentUUID/communications/optoutstatus/list

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
Body required
{
"communicationList": [
{
"communicationType": "string",
"communicationValue": "string",
"okToCommunicate": true,
"customerUUID": "string"
}
]
}
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/communications/optoutstatus/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"communicationList": [
{
"communicationType": "string",
"communicationValue": "string",
"okToCommunicate": true,
"customerUUID": "string"
}
]
}'