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/accountingclasses/{accountingclassid}

accountingclassid: integer
in path

(no description)

Request Example
{
  "AccountingClassId": "integer",
  "AuditId": "integer",
  "Class": "string",
  "IsActive": "boolean",
  "ParentAccountingClassId": "string"
}
Response Example (200 OK)
{
  "Id": "integer",
  "AccountingClassId": "integer",
  "AuditId": "integer",
  "Class": "string",
  "Parent": "string",
  "ParentAccountingClassId": "string",
  "IsActive": "boolean",
  "Actions": "string"
}

GET /api/accountingclasses/{accountingclassid}/{auditid}

accountingclassid: integer
in path

(no description)

auditid: integer
in path

(no description)

Response Example (200 OK)
{
  "AccountingClassId": "integer",
  "AuditId": "integer",
  "Class": "string",
  "IsActive": "boolean",
  "ParentAccountingClassId": "string"
}

DELETE /api/accountingclasses/{accountingclassid}/{auditid}

accountingclassid: integer
in path

(no description)

auditid: integer
in path

(no description)

200 OK

OK

GET /api/accountingclasses/lookup/{accountingclassid}

accountingclassid: string
in path

(no description)

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

GET /api/accountingclasses/lookup/{accountingclassid}/{showemptylists}

accountingclassid: integer
in path

(no description)

showemptylists: string
in path

(no description)

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

GET /api/accountingclasses/setup

options: string
in query

(no description)

Response Example (200 OK)
[
  {
    "Id": "integer",
    "AccountingClassId": "integer",
    "AuditId": "integer",
    "Class": "string",
    "Parent": "string",
    "ParentAccountingClassId": "string",
    "IsActive": "boolean",
    "Actions": "string"
  }
]

Schema Definitions

AccountingClassesCollectionItemModel: object

Id: integer
AccountingClassId: integer
AuditId: integer
Class: string
Parent: string
ParentAccountingClassId: string
IsActive: boolean
Actions: string
Example
{
  "Id": "integer",
  "AccountingClassId": "integer",
  "AuditId": "integer",
  "Class": "string",
  "Parent": "string",
  "ParentAccountingClassId": "string",
  "IsActive": "boolean",
  "Actions": "string"
}

AccountingClassesAddEditModel: object

AccountingClassId: integer
AuditId: integer
Class: string
IsActive: boolean
ParentAccountingClassId: string
Example
{
  "AccountingClassId": "integer",
  "AuditId": "integer",
  "Class": "string",
  "IsActive": "boolean",
  "ParentAccountingClassId": "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"
}