Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.36 KB

list-dispute-evidence-response.md

File metadata and controls

45 lines (36 loc) · 1.36 KB

List Dispute Evidence Response

Defines the fields in a ListDisputeEvidence response.

Structure

ListDisputeEvidenceResponse

Fields

Name Type Tags Description Getter
Evidence List<DisputeEvidence> Optional The list of evidence previously uploaded to the specified dispute. List getEvidence()
Errors List<Error> Optional Information about errors encountered during the request. List getErrors()
Cursor String Optional The pagination cursor to be used in a subsequent request.
If unset, this is the final response. For more information, see Pagination.
String getCursor()

Example (as JSON)

{
  "evidence": [
    {
      "evidence_id": "evidence_id0",
      "id": "id2",
      "dispute_id": "dispute_id4",
      "evidence_file": {
        "filename": "filename8",
        "filetype": "filetype8"
      },
      "evidence_text": "evidence_text6"
    }
  ],
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    }
  ],
  "cursor": "cursor6"
}