POST api/Customer/SendCustomerToBraze

Request Information

URI Parameters

None.

Body Parameters

SendCustomerToBrazeRequest
NameDescriptionTypeAdditional information
UserIds

Collection of globally unique identifier

None.

EventType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserIds": [
    "7591407e-d23d-460f-bba7-3792bc6ef86e",
    "d0228abc-8a6f-45e5-9d90-0e4fc4d9031a"
  ],
  "EventType": 1
}

application/xml, text/xml

Sample:
<SendCustomerToBrazeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <EventType>1</EventType>
  <UserIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>7591407e-d23d-460f-bba7-3792bc6ef86e</d2p1:guid>
    <d2p1:guid>d0228abc-8a6f-45e5-9d90-0e4fc4d9031a</d2p1:guid>
  </UserIds>
</SendCustomerToBrazeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>