Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.34 KB

list-dispute-evidence-response.md

File metadata and controls

44 lines (35 loc) · 1.34 KB

List Dispute Evidence Response

Defines the fields in a ListDisputeEvidence response.

Structure

List Dispute Evidence Response

Fields

Name Type Tags Description
evidence List of Dispute Evidence Optional The list of evidence previously uploaded to the specified dispute.
errors List of Error Optional Information about errors encountered during the request.
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.

Example (as JSON)

{
  "cursor": "G1aSTRm48CLjJsg6Sg3hQN1b1OMaoVuG",
  "evidence": [
    {
      "dispute_id": "bVTprrwk0gygTLZ96VX1oB",
      "evidence_text": "1Z8888888888888888",
      "evidence_type": "TRACKING_NUMBER",
      "id": "TOomLInj6iWmP3N8qfCXrB",
      "uploaded_at": "2018-10-18T16:01:10.000Z"
    },
    {
      "dispute_id": "bVTprrwk0gygTLZ96VX1oB",
      "evidence_file": {
        "filename": "evidence.tiff",
        "filetype": "image/tiff"
      },
      "evidence_id": "TOomLInj6iWmP3N8qfCXrB",
      "evidence_type": "GENERIC_EVIDENCE",
      "uploaded_at": "2018-10-18T16:01:10.000Z"
    }
  ]
}