IotHub
  1. Solicitações
IotHub
  • API
    • TALQ
      • Device Class
        • Create a Talq Device Class
        • Update Talq Device Class
        • Delete a Talq Device Class
        • Update a Talq Device Class
      • Device
        • Create a Talq Device
        • List Talq Devices
        • Modify a Talq Device
        • Update Talq Devices
        • Delete a Talq Device
        • Get a Talq Device
        • Modify a Talq Device patch
        • Update a Talq Device
        • Get a Talq Device Function
        • Get a Talq Device Attribute
      • Services
        • Create a Talq Service
      • Group
        • List Talq Groups
        • Get a Talq Group
  • Docs TALQ
    • Introdução à especificação TALQ
    • Visão geral da API TALQ
    • Bootstrap process
    • Tier 1
      • Visão Geral
      • Solicitações
        • Criar Solicitação
          POST
        • Cancelar Solicitação
          DELETE
    • Tier 2
      • Visão geral
      • Bootstrap process
        • Device discovery
        • Classes discovery
        • Services announcement
        • Gateway update
        • Gateway class announcement
        • Gateway announcement
      • Device Class
        • Create a Talq Device Class
        • Update Talq Device Class
        • Delete a Talq Device Class
        • Update a Talq Device Class
      • Device
        • Get a Talq Device
        • Create a Talq Device
        • List Talq Devices
        • Modify a Talq Device
        • Update Talq Devices
        • Delete a Talq Device
        • Modify a Talq Device patch
        • Update a Talq Device
        • Get a Talq Device Function
        • Get a Talq Device Attribute
    • Tier 3
      • Visão Geral
      • Group
        • List Talq Groups
        • Get a Talq Group
      • Logger Configs
        • Get Logger Config
      • Log Reports
        • Send log report
    • Tier 4
      • Visão Geral
  1. Solicitações

Criar Solicitação

POST
/vendors/talq/clients/{idInstance}/tickets
Nesta operação, o método cria a solicitação no sistema da Exati. Após a requisição, a Exati retorna uma resposta indicando conformidade da operação.

Request

Path Params

Body Params application/json

Example
{
    "cod_external_ticket_origin": "tg",
    "ticket_origin_type_id": 107,
    "id_external_protocol": 7,
    "external_protocol": "7",
    "service_code": "constanta",
    "justification": null,
    "description": "",
    "id_worksite": 1,
    "state_abbreviation": "MG",
    "municipality": "Uberaba",
    "neighborhood": "",
    "address": "Avenida Cristovão Colombo, 485",
    "address_number": 1,
    "zip_code": null,
    "latitude": null,
    "longitude": null,
    "reference_point": "",
    "reporter": "Nox Manager",
    "reporter_phone": null,
    "reporter_birth_date": null,
    "nameplate_num": "IP05",
    "age_majority_checkbox": 0
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://iot.exati.com.br/staging/vendors/talq/clients/69/tickets' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cod_external_ticket_origin": "tg",
    "ticket_origin_type_id": 107,
    "id_external_protocol": 7,
    "external_protocol": "7",
    "service_code": "constanta",
    "justification": null,
    "description": "",
    "id_worksite": 1,
    "state_abbreviation": "MG",
    "municipality": "Uberaba",
    "neighborhood": "",
    "address": "Avenida Cristovão Colombo, 485",
    "address_number": 1,
    "zip_code": null,
    "latitude": null,
    "longitude": null,
    "reference_point": "",
    "reporter": "Nox Manager",
    "reporter_phone": null,
    "reporter_birth_date": null,
    "nameplate_num": "IP05",
    "age_majority_checkbox": 0
}'

Responses

🟢201Created
application/json
Ticket created successfully
Body

Example
{
    "id_demanda": 0,
    "operacao": "cria",
    "data_recebido": "string",
    "status": "ok"
}
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
🟠409409
🟠422Parameter Error
Modified at 2025-11-19 19:21:02
Previous
Visão Geral
Next
Cancelar Solicitação