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/referralsource
Response Example (200 OK)
[
{
"ReferralSourceId": "integer",
"Name": "string",
"Description": "string",
"CssColor": "string",
"Actions": "string"
}
]
GET /api/referralsource/{referralsourceid}
referralsourceid:
integer
in path
(no description)
OK
Response Example (200 OK)
{
"ReferralSourceId": "integer",
"Name": "string",
"Description": "string",
"CssColor": "string"
}
POST /api/referralsource/{referralsourceid}
undefined
referralsourceid:
integer
in path
(no description)
Request Example
{
"ReferralSourceId": "integer",
"Name": "string",
"Description": "string",
"CssColor": "string"
}
OK
Response Example (200 OK)
{
"ReferralSourceId": "integer",
"Name": "string",
"Description": "string",
"CssColor": "string",
"Actions": "string"
}
DELETE /api/referralsource/{referralsourceid}
referralsourceid:
integer
in path
(no description)
200 OK
OK
Schema Definitions
ReferralSourceCollectionItemModel: object
- ReferralSourceId: integer
- Name: string
- Description: string
- CssColor: string
- Actions: string
Example
{
"ReferralSourceId": "integer",
"Name": "string",
"Description": "string",
"CssColor": "string",
"Actions": "string"
}