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/purchase

Response Example (200 OK)
[
  {
    "PurchaseId": "integer",
    "ContactDisplayName": "string",
    "PurchaseDate": "string",
    "PurchaseTypeId": "string",
    "PurchaseType": "string",
    "Total": "number"
  }
]

GET /api/purchase/lookup

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

Schema Definitions

PurchaseCollectionItemModel: object

PurchaseId: integer
ContactDisplayName: string
PurchaseDate: string
PurchaseTypeId: string
PurchaseType: string
Total: number
Example
{
  "PurchaseId": "integer",
  "ContactDisplayName": "string",
  "PurchaseDate": "string",
  "PurchaseTypeId": "string",
  "PurchaseType": "string",
  "Total": "number"
}

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"
}