POST api/v1/webhooks/club/newclubmember
Request Information
URI Parameters
None.
Body Parameters
WHMessageBody| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| OrganizationCode | string |
None. |
|
| TargetId | globally unique identifier |
None. |
|
| TargetsId | Collection of globally unique identifier |
None. |
|
| ExtraData | Dictionary of string [key] and string [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"message": "sample string 1",
"organizationCode": "sample string 2",
"targetId": "aac74a3f-b86c-4ca5-9a3c-3829c2edabe8",
"targetsId": [
"6675f276-42c7-4e54-9a30-9e8b16afcdf6",
"27ec3b3f-1d29-48ed-9c3f-4fdc7ba8c8e9"
],
"extraData": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
}
application/xml, text/xml
Sample:
<WHMessageBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.WebHooks">
<ExtraData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</ExtraData>
<Message>sample string 1</Message>
<OrganizationCode>sample string 2</OrganizationCode>
<TargetId>aac74a3f-b86c-4ca5-9a3c-3829c2edabe8</TargetId>
<TargetsId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>6675f276-42c7-4e54-9a30-9e8b16afcdf6</d2p1:guid>
<d2p1:guid>27ec3b3f-1d29-48ed-9c3f-4fdc7ba8c8e9</d2p1:guid>
</TargetsId>
</WHMessageBody>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.