Skip to main content

get opt-out status list for customers

get opt-out status list for customers

Path Parameters
    departmentUUID string required
Request Body required
    customerUUIDList 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/customers/optoutstatus/list

Authorization

name: basicAuthtype: httpscheme: basic

Request

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