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/disputes/dispute/document

Request Example
{
  "DisputeId": "string",
  "Description": "string",
  "Document": "string"
}
Response Example (200 OK)
{
  "DocumentId": "string",
  "DisputeId": "string",
  "Date": "string",
  "Type": "string"
}

GET /api/disputes/dispute/document/{documentid}

documentid: string
in path

(no description)

Response Example (200 OK)
{
  "DocumentId": "string",
  "Date": "string",
  "Type": "string",
  "Description": "string",
  "Ref": "string"
}

POST /api/disputes/dispute/message

Request Example
{
  "DisputeId": "string",
  "From": "string",
  "Type": "string",
  "Amount": "string",
  "Response": "string"
}
Response Example (200 OK)
{
  "MessageId": "string",
  "DisputeId": "string",
  "Date": "string",
  "From": "string",
  "Type": "string"
}

GET /api/disputes/dispute/message/{messageid}

messageid: string
in path

(no description)

Response Example (200 OK)
{
  "MessageId": "string",
  "Date": "string",
  "From": "string",
  "Type": "string",
  "Amount": "string",
  "Response": "string"
}

Schema Definitions

DisputeMessageListViewItem: object

MessageId: string
DisputeId: string
Date: string
From: string
Type: string
Example
{
  "MessageId": "string",
  "DisputeId": "string",
  "Date": "string",
  "From": "string",
  "Type": "string"
}

CreateDisputeMessageModel: object

DisputeId: string
From: string
Type: string
Amount: string
Response: string
Example
{
  "DisputeId": "string",
  "From": "string",
  "Type": "string",
  "Amount": "string",
  "Response": "string"
}

ViewDisputeMessageModel: object

MessageId: string
Date: string
From: string
Type: string
Amount: string
Response: string
Example
{
  "MessageId": "string",
  "Date": "string",
  "From": "string",
  "Type": "string",
  "Amount": "string",
  "Response": "string"
}

DisputeDocumentListViewItem: object

DocumentId: string
DisputeId: string
Date: string
Type: string
Example
{
  "DocumentId": "string",
  "DisputeId": "string",
  "Date": "string",
  "Type": "string"
}

CreateDisputeDocumentModel: object

DisputeId: string
Description: string
Document: string
Example
{
  "DisputeId": "string",
  "Description": "string",
  "Document": "string"
}

ViewDisputeDocumentModel: object

DocumentId: string
Date: string
Type: string
Description: string
Ref: string
Example
{
  "DocumentId": "string",
  "Date": "string",
  "Type": "string",
  "Description": "string",
  "Ref": "string"
}