Location Message
Description  | Location message is primarily used to send location coordinates to the recipient.  | 
|---|
The method to send location message is given as follows:
Specify the type = "LOCATION". The body should be in JSON format and include the following properties:
Property  | Desc.  | 
|---|---|
type - String - Required  | Value = "LOCATION"  | 
location - Numeric - Required  | Parameters: 
  | 
markdownText - String - Optional  | contains custom plain text sent by end user.  | 
additionalDetails - String - Optional  | Additional details such as name, address, url can be passed.  | 
"body": {
        "type": "LOCATION",
        "location": {
            "latitude": 31.51335334777832,
            "longitude": 74.3333969116211
        },
        "markdownText": null,
        "additionalDetails": {
            "name": "Gaddafi Stadium",
            "address": "Hafeez Kardar Road",
            "url": null
        }
    }