POST api/SendMessage_V3/IncomingCallbackURL
Request Information
URI Parameters
None.
Body Parameters
IncomingCallbackURLRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| Password | string |
None. |
|
| CallbackURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"Password": "sample string 2",
"CallbackURL": "sample string 3"
}
application/xml, text/xml
Sample:
<IncomingCallbackURLRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.groupcall.alert.azure"> <CallbackURL>sample string 3</CallbackURL> <CustomerId>1</CustomerId> <Password>sample string 2</Password> </IncomingCallbackURLRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IncomingCallbackURLResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| CallbackURL | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"CallbackURL": "sample string 2"
}
application/xml, text/xml
Sample:
<IncomingCallbackURLResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.groupcall.alert.azure"> <CallbackURL>sample string 2</CallbackURL> <CustomerId>1</CustomerId> </IncomingCallbackURLResponse>