PicPay
Call the PicPay API to request payments via PicPay.
POST /v2/payin
curl -v --location --request POST 'https://sandbox.smartfastpay.com/v2/payin' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer < Access-Token >' \
--data-raw '{
"customer": {
"id": "b48a0728-9ff4-47ee-8f1b-92d2d5813dda",
"name": "John Doe",
"email": "[email protected]",
"document": {
"type": "CPF",
"number": "12345678909"
},
"phone": "+5511912345678"
},
"country": "BRA",
"payment_method": "picpay",
"notification_url": "https://webhook.site/asdfasdf",
"transaction": {
"id": "b7178a51-3c86-4c08-80ac-49f2b93c58bcert",
"currency": "BRL",
"amount": 2
}
}'Parameter
Type
Required
Description
Last updated