curl --request POST \
--url https://api-staging.boost.xyz/inboxes/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"draft": true
}'
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"draft": true,
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
This creates a new Inbox for the authenticated user
curl --request POST \
--url https://api-staging.boost.xyz/inboxes/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"draft": true
}'
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"draft": true,
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The base configuration required to create an Inbox. The Inbox's name will be slugified for alternative lookup.
Success
The response is of type object
.