InboxKit
  1. Consent Request
InboxKit
  • Introduction
  • Order
    • Place Order
      POST
  • Webhook
    • Status Change Webhook
      POST
  • 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 subscription details
    • Change subscription plan
    • Cancel subscription
    • Get wallet details
    • Add credits to wallet
    • Update auto top-up settings
    • Get billing portal link
  • Consent Request
    • Initiate Consent Request
      POST
    • Get Consent Request Status
      GET
    • List Consent Requests
      GET
  • Tags
    • Assign tags to domains or mailboxes
    • Get all tags
    • Create a new tag
    • Delete a tag
  • Prewarm
    • Search Domains
    • Search Mailboxes
    • Buy Prewarmed Mailboxes
    • Check Order Status
  1. Consent Request

Get Consent Request Status

GET
https://api.inboxkit.com/v1/api/mailboxes/consent-request/status/{requestId}
Maintainer:Not configured
Retrieve the current status of a consent request

Request

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

Responses

🟢200OK
application/json
Consent request status retrieved successfully
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.inboxkit.com/v1/api/mailboxes/consent-request/status/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "error": false,
    "data": {
        "uid": "660e8400-e29b-41d4-a716-446655440000",
        "status": "queued",
        "status_text": "Processing consent request",
        "status_reason": "",
        "retry_count": 0,
        "mailbox": {
            "uid": "550e8400-e29b-41d4-a716-446655440000",
            "email": "[email protected]"
        },
        "created_at": "2024-01-15T10:30:00.000Z",
        "completed_at": null,
        "last_attempt_at": "2024-01-15T10:31:00.000Z",
        "next_retry_at": null
    }
}
Modified at 2025-09-24 14:23:47
Previous
Initiate Consent Request
Next
List Consent Requests
Built with