Deliveries

Delivery requests allow you to airdrop $TOKENs directly to your users' wallets, and be notified when it's done.

How are Deliveries different than Allocations?

The delivery system differs from the allocation system in that it is designed to deliver $TOKENs on a per-transaction basis, rather than in batches.

Create a new delivery request

post
Authorizations
Body
objectOptional
Responses
200
Created
application/json
Responseobject
post
POST /v1/deliveries HTTP/1.1
Host: localhost:8080
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
200

Created

{}

Get a delivery request information and status

get
Authorizations
Path parameters
requestIdstringRequired
Responses
200
Delivery request information
application/json
Responseobject
get
GET /v1/deliveries/{requestId} HTTP/1.1
Host: localhost:8080
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

Delivery request information

{}

Conversion Rate

Similar to payment requests, delivery requests can also save an arbitrary conversion rate. This can be especially useful if you need to lock in a specific exchange rate for a particular transaction.

Last updated