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/locations/locations/{locationid}

locationid: integer
in path

(no description)

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

POST /api/locations/locations/{locationid}

locationid: integer
in path

(no description)

Request Example
{
  "LocationId": "integer",
  "Name": "string",
  "Description": "string"
}
200 OK

OK

GET /api/locations/locations/lookup

Response Example (200 OK)
[
  {
    "Id": "integer",
    "Name": "string",
    "ExtraData": "string",
    "CssColor": "string",
    "IsSelected": "boolean",
    "IsDeleted": "boolean",
    "Order": "integer"
  }
]

Schema Definitions

AddEditLocationModel: object

LocationId: integer
Name: string
Description: string
Example
{
  "LocationId": "integer",
  "Name": "string",
  "Description": "string"
}

Object: object

Example
"object"

GenericLookUpChoice<Int32>: object

Id: integer
Name: string
ExtraData: string
CssColor: string
IsSelected: boolean
IsDeleted: boolean
Order: integer
Example
{
  "Id": "integer",
  "Name": "string",
  "ExtraData": "string",
  "CssColor": "string",
  "IsSelected": "boolean",
  "IsDeleted": "boolean",
  "Order": "integer"
}