Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
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.