InboxKit
  1. Billing
InboxKit
  • Introduction
  • Account
    • Get account details
      GET
  • Workspaces
    • List workspaces
      GET
    • Get workspace details
      GET
    • Create workspace
      POST
    • Update workspace
      PUT
    • Delete workspace
      DELETE
    • Update workspace webhook
      POST
  • Domains
    • Search available domains
      POST
    • Check if domain is banned from registration
      GET
    • Check domain availability
      GET
    • Register domains
      POST
    • List domains
      POST
    • List assignable domains
      GET
    • Set DMARC policy
      POST
    • Remove DMARC policy
      DELETE
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set email forwarding
      POST
    • Remove email forwarding
      DELETE
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
  • Mailboxes
    • List mailboxes
    • Show mailbox credentials
    • Get mailbox details
    • Buy mailboxes
    • Check mailbox status
    • Cancel mailboxes
    • Update mailbox
    • Update mailbox profile picture
    • Generate TOTP
    • Change username
    • Change password
    • Check mailbox availability
  • DNS
    • Get DNS records
    • Add DNS records
    • Update DNS records
    • Delete DNS records
  • Sequencers
    • Export mailboxes status
    • List sequencer platforms
    • List sequencers
    • Export mailboxes
    • Add sequencer
    • Update sequencer
    • Delete sequencers
  • Billing
    • Get pricing plans
      GET
    • Get subscription details
      GET
    • Change subscription plan
      POST
    • Cancel subscription
      POST
    • Get wallet details
      GET
    • Add credits to wallet
      POST
    • Update auto top-up settings
      POST
    • Get billing portal link
      GET
  1. Billing

Change subscription plan

POST
https://api.inboxkit.com/v1/api/billing/subscription/change
Maintainer:Not configured
Change to a different subscription plan or create new subscription
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.inboxkit.com/v1/api/billing/subscription/change' \
--header 'Content-Type: application/json' \
--data-raw '{
    "uid": "plan_123456"
}'
Response Response Example
{
    "error": false,
    "message": "Subscription updated successfully.",
    "plan": "Professional",
    "uid": "plan_123456",
    "features": [
        "string"
    ],
    "cycle": "monthly",
    "renews_on": 1640995200,
    "purchased_on": 1640908800
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200OK
application/json
Subscription changed successfully or payment link generated
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Modified at 2025-06-17 13:00:15
Previous
Get subscription details
Next
Cancel subscription
Built with