InboxKit
  1. Tags
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
    • Get Consent Request Status
    • List Consent Requests
  • Tags
    • Assign tags to domains or mailboxes
      POST
    • Get all tags
      GET
    • Create a new tag
      POST
    • Delete a tag
      DELETE
  • Prewarm
    • Search Domains
    • Search Mailboxes
    • Buy Prewarmed Mailboxes
    • Check Order Status
  1. Tags

Assign tags to domains or mailboxes

POST
https://api.inboxkit.com/v1/api/tags/assign
Maintainer:Not configured
Bulk assign, remove, or set tags for multiple domains or mailboxes. Tags are workspace-specific and isolated.

Request

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

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Tags assigned successfully
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.inboxkit.com/v1/api/tags/assign' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "entityType": "domains",
    "entityUids": [
        "550e8400-e29b-41d4-a716-446655440000"
    ],
    "tagUids": [
        "770e8400-e29b-41d4-a716-446655440002"
    ],
    "action": "add"
}'
Response Response Example
200 - Example 1
{
    "error": false,
    "message": "Tags added to 5 domains successfully",
    "data": {
        "entitiesUpdated": 5,
        "totalEntities": 5,
        "tags": [
            "string"
        ],
        "action": "add",
        "createdTags": [
            {
                "uid": "07cc67f4-45d6-494b-adac-09b5cbc7e2b5",
                "name": "string",
                "hexColor": "string"
            }
        ],
        "updatedEntities": [
            {
                "uid": "07cc67f4-45d6-494b-adac-09b5cbc7e2b5",
                "tags": [
                    "497f6eca-6276-4993-bfeb-53cbbbba6f08"
                ]
            }
        ]
    }
}
Modified at 2025-09-16 07:47:25
Previous
List Consent Requests
Next
Get all tags
Built with