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

Customer FTP Upload server calls this method to lookup customer info.

GET /api/public/customerftpupload/contact/lookup/{info}/

Customer FTP Upload server calls this method to lookup customer info.

info: string
in path

(no description)

this[]: string
in query

(no description)

length: string
in query

(no description)

Response Example (200 OK)
{
  "Status": "integer",
  "StatusMessage": "string",
  "TenantKey": "string",
  "ContactId": "integer",
  "ContactEmailAddress": "string",
  "DisplayName": "string"
}

Customer FTP Upload server calls this method to update the file database table with file info.

POST /api/public/customerftpupload/files/info/

Customer FTP Upload server calls this method to update the file database table with file info.

Request Example
{
  "ContactId": "integer",
  "Name": "string",
  "LastModifiedDate": "string",
  "LastModifiedBy": "string",
  "SizeInBytes": "integer",
  "ContentType": "string",
  "Url": "string",
  "Hash": "string"
}
200 OK

OK

Schema Definitions

CustomerFtpUploadContactModel: object

Status: integer
StatusMessage: string
TenantKey: string
ContactId: integer
ContactEmailAddress: string
DisplayName: string
Example
{
  "Status": "integer",
  "StatusMessage": "string",
  "TenantKey": "string",
  "ContactId": "integer",
  "ContactEmailAddress": "string",
  "DisplayName": "string"
}

HttpStatusCode: object

Example
"object"

CustomerFtpUploadFileInfoModel: object

ContactId: integer
Name: string
LastModifiedDate: string
LastModifiedBy: string
SizeInBytes: integer
ContentType: string
Url: string
Hash: string
Example
{
  "ContactId": "integer",
  "Name": "string",
  "LastModifiedDate": "string",
  "LastModifiedBy": "string",
  "SizeInBytes": "integer",
  "ContentType": "string",
  "Url": "string",
  "Hash": "string"
}