- Payout Link Routes
- Create Payout Link
Payout Link Routes
Create Payout Link
Create a Payout Link.
/api/v2/payout-links
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/payout-links \
--header 'Authorization: Basic AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"amount": integer
}'
Body
The user's id.
The payee. This is optional.
Amount to be paid in cents.
Force the collection of 1099 or W-8 information. Defaults to false
.
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
Add a memo to the top of the Payout Link
Response
ID of the payout-link
.
Date the payout-link
was created.
URL to access the payout-link
.
The amount to pay in cents.
Status of the payout-link
.
claimed
, delivery_pending
, delivery_failed
, delivered
, canceled
Information about the payee. It is used to pre-fill information.
Transfers marked as tax_exempt
will not be counted towards the 1099 threshold.
ID of the user
that has claimed the payout-link
.
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/payout-links \
--header 'Authorization: Basic AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"amount": integer
}'