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
undefined
Request Example
{
"DisputeId": "string",
"Description": "string",
"Document": "string"
}
200 OK
OK
Response Example (200 OK)
{
"DocumentId": "string",
"DisputeId": "string",
"Date": "string",
"Type": "string"
}
GET /api/disputes/dispute/document/{documentid}
documentid:
string
in path
(no description)
200 OK
OK
Response Example (200 OK)
{
"DocumentId": "string",
"Date": "string",
"Type": "string",
"Description": "string",
"Ref": "string"
}
POST /api/disputes/dispute/message
undefined
Request Example
{
"DisputeId": "string",
"From": "string",
"Type": "string",
"Amount": "string",
"Response": "string"
}
200 OK
OK
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)
200 OK
OK
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"
}