Fetches details of a specific lead by their ID.
Request
 Send your HTTP requests with an Authorization
 header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
 Responses
application/json {
    "data": {
        "id": "1",
        "name": "john",
        "title": null,
        "company": null,
        "phonenumber": "01232XXXXXX",
        "email": "[email protected]",
        "status": "1",
        "date": "2024-08-05 14:07:36",
        "chat_id": "uyisa77",
        "chat": null,
        "chat_date": null
    },
    "message": "success"
}
Modified at 2024-09-05 09:36:50