POST api/FubWebhook?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | integer |
Required |
Body Parameters
FubEventDto| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | globally unique identifier |
None. |
|
| eventCreated | date |
None. |
|
| event | WebhookEvent |
None. |
|
| resourceIds | Collection of integer |
None. |
|
| uri | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"eventId": "e6339b1d-8ce6-49c4-86f7-c8aded3905e6",
"eventCreated": "2026-03-23T17:08:07.9903686-04:00",
"event": "peopleCreated",
"resourceIds": [
1,
2
],
"uri": "sample string 3"
}
text/html
Sample:
{"eventId":"e6339b1d-8ce6-49c4-86f7-c8aded3905e6","eventCreated":"2026-03-23T17:08:07.9903686-04:00","event":"peopleCreated","resourceIds":[1,2],"uri":"sample string 3"}
application/xml, text/xml
Sample:
<FubEventDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRealtyMedia.Services.eRealtyCrm.Dto">
<EventCreated>2026-03-23T17:08:07.9903686-04:00</EventCreated>
<EventId>e6339b1d-8ce6-49c4-86f7-c8aded3905e6</EventId>
<ResourceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ResourceIds>
<Type>peopleCreated</Type>
<Uri>sample string 3</Uri>
</FubEventDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.