set_context
Configure default workspace and email service provider settings to streamline API requests for domain management and mailbox operations.
Instructions
Set default x-workspace-key and x-service-provider headers for subsequent API calls.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serviceProvider | No | Mail service provider. | |
workspaceKey | No | Workspace ID (UUID). |
Input Schema (JSON Schema)
{
"properties": {
"serviceProvider": {
"description": "Mail service provider.",
"enum": [
"GOOGLE",
"MICROSOFT"
],
"type": "string"
},
"workspaceKey": {
"description": "Workspace ID (UUID).",
"type": "string"
}
},
"type": "object"
}