action gsmtasks_devices_create { label: "devices_create" provider: gsmtasks method: POST path: "/devices/" encoding: form input: { type: "object" properties: { battery_level: { type: "integer" } brand: { type: "string" } build_number: { type: "string" } created_at: { type: "string" format: "date-time" } device_country: { type: "string" } device_id: { type: "string" } device_locale: { type: "string" } format: { type: "string" enum: ["json", "xlsx"] } free_disk_storage: { type: "integer" format: "int64" } id: { type: "string" format: "uuid" } ios_app_tracking_permission: { type: "string" } is_charging: { type: "boolean" } location_permission: { type: "string" } manufacturer: { type: "string" } model: { type: "string" } motion_permission: { type: "string" } notification_permission: { type: "string" } readable_version: { type: "string" } system_name: { type: "string" } system_version: { type: "string" } timezone: { type: "object" } url: { type: "string" format: "uri" } user: { type: "string" format: "uri" } version: { type: "string" } } required: ["created_at", "id", "url", "user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }