### Example URL Call for Notify.lk Send SMS Endpoint Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Provides a sample URL demonstrating how to construct a GET request to the Notify.lk /api/v1/send endpoint with placeholder values for user credentials and message details. ```http https://app.notify.lk/api/v1/send?user_id=[USER_ID]&api_key=[API_KEY]&sender_id=NotifyDEMO&to=[TO]&message=Test ``` -------------------------------- ### Example URL Call for Notify.lk Account Status Endpoint Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Presents a sample URL for making a GET request to the Notify.lk /api/v1/status endpoint, demonstrating the inclusion of user ID and API key placeholders. ```http https://app.notify.lk/api/v1/status?user_id=[USER_ID]&api_key=[API_KEY] ``` -------------------------------- ### Example JSON Response for Notify.lk Send SMS Success Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Illustrates the JSON structure returned by the Notify.lk /api/v1/send endpoint upon a successful SMS delivery. ```json { "status": "success", "data": "Sent" } ``` -------------------------------- ### Example JSON Response for Notify.lk Account Status Success Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Shows the expected JSON format returned by the Notify.lk /api/v1/status endpoint when successfully retrieving account information, including active status and balance. ```json { "status": "success", "data": { "active": true, "acc_balance": 3500.00 } } ``` -------------------------------- ### API Documentation for Notify.lk Account Status Endpoint Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Describes the API endpoint for retrieving account status and balance from Notify.lk. It specifies the request URL, HTTP method (GET), and required parameters. ```APIDOC URL: https://app.notify.lk/api/v1/status Type: GET Parameters: user_id: YES - User ID from your settings page. api_key: YES - API key from your settings page. ``` -------------------------------- ### API Documentation for Notify.lk Send SMS Endpoint Source: https://github.com/notifylk/documentation/blob/master/api-endpoints/README.md Details the API endpoint for sending SMS messages via Notify.lk. It covers the request URL, supported HTTP methods (GET/POST), required and optional parameters, and the expected JSON response format upon success or failure. ```APIDOC URL: https://app.notify.lk/api/v1/send Type: GET or POST Parameters: user_id: YES - User ID from your settings page. api_key: YES - API key from your settings page. sender_id: YES - Your approved Sender ID. Use “NotifyDEMO” for testing. This one is case sensitive. to: YES - The number of the recipient. Should be in the format of 9471XXXXXXX. message: YES - The message. Max: 621 chars. contact_fname: NO - (Optional) First name of the contact. Will be used while saving the contact. contact_lname: NO - (Optional) Last name of the contact. Will be used while saving the contact. contact_email: NO - (Optional) Email of the contact. Will be used while saving the contact. contact_address: NO - (Optional) Local address of the contact. Will be used while saving the contact. contact_group: NO - (Optional) Contact Group Id, if you need to assign the saving contact to a group. type: NO - (Optional) Provide this with `unicode`, to enable unicode. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.