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

POST /api/mic/reports/available

Request Example
{
  "Top": "string",
  "Take": "string",
  "Skip": "string",
  "Filter": "string",
  "OrderBy": "string",
  "CalendarStartDate": "string",
  "CalendarEndDate": "string",
  "TenantId": "integer",
  "ReportCategoryId": "string",
  "IsCustom": "boolean",
  "IsPrivate": "boolean",
  "IsFavorite": "boolean",
  "Criteria": "string",
  "ShowCustomReportsAcrossCustomers": "boolean"
}
Response Example (200 OK)
{
  "Criteria": "string",
  "CriteriaItems": "string",
  "TotalRecordAvailable": "string",
  "ModelItems": "string",
  "Results": "string"
}

Schema Definitions

ListViewReturnModel<ReportBaseModel>: object

Criteria: string
CriteriaItems: string
TotalRecordAvailable: string

We typically only return a subset of what is available on the server, but lets show the user what was available

ModelItems: string
Results: string
Example
{
  "Criteria": "string",
  "CriteriaItems": "string",
  "TotalRecordAvailable": "string",
  "ModelItems": "string",
  "Results": "string"
}

ReportAdvancedFilter: object

Top: string
Take: string
Skip: string
Filter: string
OrderBy: string
CalendarStartDate: string
CalendarEndDate: string
TenantId: integer
ReportCategoryId: string
IsCustom: boolean
IsPrivate: boolean
IsFavorite: boolean
Criteria: string
ShowCustomReportsAcrossCustomers: boolean
Example
{
  "Top": "string",
  "Take": "string",
  "Skip": "string",
  "Filter": "string",
  "OrderBy": "string",
  "CalendarStartDate": "string",
  "CalendarEndDate": "string",
  "TenantId": "integer",
  "ReportCategoryId": "string",
  "IsCustom": "boolean",
  "IsPrivate": "boolean",
  "IsFavorite": "boolean",
  "Criteria": "string",
  "ShowCustomReportsAcrossCustomers": "boolean"
}