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)
200 OK
OK
Response Example (200 OK)
{
"LocationId": "integer",
"Name": "string",
"Description": "string"
}
POST /api/locations/locations/{locationid}
undefined
locationid:
integer
in path
(no description)
Request Example
{
"LocationId": "integer",
"Name": "string",
"Description": "string"
}
200 OK
OK
GET /api/locations/locations/lookup
200 OK
OK
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"
}
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"
}