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)

Response Example (200 OK)
{
  "ReferralSourceId": "integer",
  "Name": "string",
  "Description": "string",
  "CssColor": "string"
}

POST /api/referralsource/{referralsourceid}

referralsourceid: integer
in path

(no description)

Request Example
{
  "ReferralSourceId": "integer",
  "Name": "string",
  "Description": "string",
  "CssColor": "string"
}
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"
}

AddEditReferralSourceViewModel: object

ReferralSourceId: integer
Name: string
Description: string
CssColor: string
Example
{
  "ReferralSourceId": "integer",
  "Name": "string",
  "Description": "string",
  "CssColor": "string"
}

Object: object

Example
"object"