Properties
| Name | Type | Description |
|---|---|---|
| status_code | integer | HTTP Response Status Code |
| status | string | HTTP Response Status |
| service | string | Apideck ID of service provider |
| resource | string | Unified API resource name |
| operation | string | Operation performed |
| data | object | |
| _raw | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateDriveResponse",
"title": "CreateDriveResponse",
"type": "object",
"x-apideck-schema-id": "CreateDriveResponse",
"required": [
"status_code",
"status",
"service",
"resource",
"operation",
"data"
],
"properties": {
"status_code": {
"type": "integer",
"description": "HTTP Response Status Code",
"example": 200
},
"status": {
"type": "string",
"description": "HTTP Response Status",
"example": "OK"
},
"service": {
"type": "string",
"description": "Apideck ID of service provider",
"example": "google-drive"
},
"resource": {
"type": "string",
"description": "Unified API resource name",
"example": "Drives"
},
"operation": {
"type": "string",
"description": "Operation performed",
"example": "add"
},
"data": {
"$ref": "#/components/schemas/UnifiedId"
},
"_raw": {
"$ref": "#/components/schemas/Raw"
}
}
}