GrowthZone REST API API Reference
undefined
API Endpoint
https://app.memberzone.org
Request Content-Types: application/json
Response Content-Types: application/json
Schemes: https
Version: v1.0
Paths
GET /api/webhooks/setup
200 OK
OK
Response Example (200 OK)
[
{
"Id": "string",
"Description": "string",
"WebHookId": "string",
"Url": "string",
"IsPaused": "boolean",
"Actions": "string"
}
]
POST /api/webhooks/setup
undefined
Request Example
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string",
"Description": "string",
"Url": "string",
"IsPaused": "boolean",
"PayloadStyle": "string",
"IgnoreWebhookValidation": "boolean"
}
200 OK
OK
Response Example (200 OK)
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string",
"Description": "string",
"Url": "string",
"IsPaused": "boolean",
"PayloadStyle": "string",
"IgnoreWebhookValidation": "boolean"
}
DELETE /api/webhooks/setup/{webhookid}
webhookid:
string
in path
(no description)
200 OK
OK
GET /api/webhooks/setup/{webhookid}/test
webhookid:
string
in path
(no description)
200 OK
OK
Response Example (200 OK)
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string"
}
POST /api/webhooks/setup/{webhookid}/test
undefined
webhookid:
object
in path
(no description)
Request Example
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string"
}
200 OK
OK
GET /api/webhooks/setup/actiontypes/lookup
200 OK
OK
Response Example (200 OK)
[
{
"Id": "string",
"Name": "string",
"ExtraData": "string",
"CssColor": "string",
"IsSelected": "boolean",
"IsDeleted": "boolean",
"Order": "integer"
}
]
POST /api/webhooks/setup/add/realestate
200 OK
OK
GET /api/webhooks/setup/details/{webhookid}
webhookid:
string
in path
(no description)
200 OK
OK
Response Example (200 OK)
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string",
"Description": "string",
"Url": "string",
"IsPaused": "boolean",
"PayloadStyle": "string",
"IgnoreWebhookValidation": "boolean"
}
Schema Definitions
WebHookCollectionItem: object
- Id: string
- Description: string
- WebHookId: string
- Url: string
- IsPaused: boolean
- Actions: string
Example
{
"Id": "string",
"Description": "string",
"WebHookId": "string",
"Url": "string",
"IsPaused": "boolean",
"Actions": "string"
}
AddEditWebHookViewModel: object
- Id: string
- WebHookId: string
- WebHookFilters: string
- Description: string
- Url: string
- IsPaused: boolean
- PayloadStyle: string
- IgnoreWebhookValidation: boolean
Example
{
"Id": "string",
"WebHookId": "string",
"WebHookFilters": "string",
"Description": "string",
"Url": "string",
"IsPaused": "boolean",
"PayloadStyle": "string",
"IgnoreWebhookValidation": "boolean"
}
GenericLookUpChoice<String>: object
- Id: string
- Name: string
- ExtraData: string
- CssColor: string
- IsSelected: boolean
- IsDeleted: boolean
- Order: integer
Example
{
"Id": "string",
"Name": "string",
"ExtraData": "string",
"CssColor": "string",
"IsSelected": "boolean",
"IsDeleted": "boolean",
"Order": "integer"
}