action gsmtasks_client_roles_create { label: "client_roles_create" provider: gsmtasks method: POST path: "/client_roles/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } client: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } is_active: { type: "boolean" description: "Designates whether this Client Role should be treated as active." } is_manager: { type: "boolean" } phone: { type: "string" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } user: { type: "string" format: "uri" } } required: ["account", "client", "created_at", "id", "updated_at", "url", "user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }