Method : POST | GET
Endpoint: {{ url('/') }}/info-devices
Request Body : (JSON If POST)
| Parameter | Type | Required | Description | 
|---|---|---|---|
| api_key | string | Yes | API Key | 
| number | string | Yes | any number ex 62888xxxx | 
Example JSON Request
{
    "api_key": "1234567890",
    "number": "201111347197"
}Example URL Request
{{ url('/') }}/info-devices?api_key=1234567890&number=6281222xxxxxExample JSON Response
{
    "status":true,
    "info":[
        {
            "id":1,
            "user_id":1,
            "body":"628122xxxxxx",
            "webhook":null,
            "status":"Disconnect",
            "created_at":"2024-08-16T11:07:27.000000Z",
            "updated_at":"2024-08-16T11:07:27.000000Z",
            "message_sent":0,
            "chatgpt":null,
            "typebot":0,
            "reject_call":0,
            "reject_message":null,
            "can_read_message":0,
            "reply_when":"Personal",
            "chatgpt_name":null,
            "chatgpt_api":null,
            "gemini_name":null,
            "gemini_api":null,
            "claude_name":null,
            "claude_api":null,
            "webhook_read":0,
            "webhook_reject_call":0,
            "webhook_typing":0,
            "bot_typing":0
        }
    ]
}