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

Response Example (200 OK)
{
  "TenantId": "integer",
  "Jobs": "string"
}

GET /api/jobs/wmsexports

OK

Response Example (200 OK)
{
  "ExportJobs": "string"
}

Generates excel document containing previously exported data

GET /api/jobs/wmsexports/download/{exportjobid}

Generates excel document containing previously exported data

exportjobid: integer
in path

Previous export identifier

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)

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

WMSPreviousExports: object

ExportJobs: string
Example
{
  "ExportJobs": "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"
}