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/jobs/importandexport
200 OK
OK
Response Example (200 OK)
{
"TenantId": "integer",
"Jobs": "string"
}
GET /api/jobs/wmsexports
200 OK
OK
Response Example (200 OK)
{
"ExportJobs": "string"
}
Generates excel document containing previously exported data
Generates excel document containing previously exported data
exportjobid:
integer
in path
Previous export identifier
200 OK
Download of the excel file
Response Example (200 OK)
{
"Version": "string",
"Content": "string",
"StatusCode": "string",
"ReasonPhrase": "string",
"Headers": "string",
"RequestMessage": "string",
"IsSuccessStatusCode": "boolean"
}
POST /api/jobs/wmsexports/revert/{exportjobid}
exportjobid:
integer
in path
(no description)
200 OK
OK
Response Example (200 OK)
{
"ExportJobId": "integer",
"TransactionCount": "integer",
"Progress": "string",
"LastUpdated": "string",
"Actions": "string",
"ConfirmMessage": "string"
}
Schema Definitions
ImportAndExportJobsViewModel: object
- TenantId: integer
- Jobs: string
Example
{
"TenantId": "integer",
"Jobs": "string"
}
ExportJobInfoModel: object
- ExportJobId: integer
- TransactionCount: integer
- Progress: string
- LastUpdated: string
- Actions: string
- ConfirmMessage: string
Example
{
"ExportJobId": "integer",
"TransactionCount": "integer",
"Progress": "string",
"LastUpdated": "string",
"Actions": "string",
"ConfirmMessage": "string"
}
HttpResponseMessage: object
- Version: string
- Content: string
- StatusCode: string
- ReasonPhrase: string
- Headers: string
- RequestMessage: string
- IsSuccessStatusCode: boolean
Example
{
"Version": "string",
"Content": "string",
"StatusCode": "string",
"ReasonPhrase": "string",
"Headers": "string",
"RequestMessage": "string",
"IsSuccessStatusCode": "boolean"
}