POST api/PaymentProfileCreated
Request Information
URI Parameters
None.
Body Parameters
PaymentProfileEventName | Description | Type | Additional information |
---|---|---|---|
notificationId | string |
None. |
|
eventType | string |
None. |
|
eventDate | string |
None. |
|
webhookId | string |
None. |
|
payload | PaymentProfileEventPayload |
None. |
Request Formats
application/json, text/json
Sample:
{ "notificationId": "sample string 1", "eventType": "sample string 2", "eventDate": "sample string 3", "webhookId": "sample string 4", "payload": { "customerProfileId": 1, "entityName": "sample string 2", "id": "sample string 3", "customerType": "sample string 4" } }
application/xml, text/xml
Sample:
<PaymentProfileEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebHookAuthNet"> <eventDate>sample string 3</eventDate> <eventType>sample string 2</eventType> <notificationId>sample string 1</notificationId> <payload> <customerProfileId>1</customerProfileId> <customerType>sample string 4</customerType> <entityName>sample string 2</entityName> <id>sample string 3</id> </payload> <webhookId>sample string 4</webhookId> </PaymentProfileEvent>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>