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
webReceipt
string
required

The CashApp web receipt URL

Response

200
application/json
Successfully fetched receipt details
cashTag
string

The CashTag of the payment recipient

value
string

The payment amount as a string

note
string

The note associated with the payment

timestamp
string

The timestamp of the payment

status
enum<string>

The status of the payment

Available options:
Completed,
Failed
source
string

The source of the payment

identifier
string

The unique Cash App identifier of the payment

to
string

The recipient of the payment

from
string

The sender of the payment