Properties
| Name | Type | Description |
|---|---|---|
| data | object | |
| took | number | Time taken in seconds. |
| requestId | string | Unique identifier for the request. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateIntegrationResponse",
"title": "CreateIntegrationResponse",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the created integration."
},
"name": {
"type": "string",
"description": "Name of the integration."
},
"enabled": {
"type": "boolean",
"description": "Whether the integration is enabled."
},
"type": {
"type": "string",
"description": "Integration type."
},
"apiKey": {
"type": "string",
"description": "API key for the integration."
}
}
},
"took": {
"type": "number",
"description": "Time taken in seconds."
},
"requestId": {
"type": "string",
"description": "Unique identifier for the request."
}
}
}