POST
/
api
/
v1
/
cashapp
/
receipt
curl --request POST \
  --url https://cashpay.space/api/v1/cashapp/receipt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webReceipt": "<string>"
}'
{
  "cashTag": "<string>",
  "value": "<string>",
  "note": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "status": "Completed",
  "source": "<string>",
  "identifier": "<string>",
  "to": "<string>",
  "from": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Successfully fetched receipt details

The response is of type object.