HTTP Methods
| Method | Description |
|---|---|
| GET | To retrieve data from the given server. |
| POST | To insert or upload any new resource to the server. |
| PUT | To update an existing resource. This replaces the target resource with the updated content. |
| DELETE | To delete a resource at a particular location. |
For example, using the GET method, you can retrieve the
list of resources or get the details of a particular resource.
To get a list of modules, send request as shown below:
curl "https://api.lingaros.com/v1/lingapos/user"
-X GET
-H "apikey: your-generated-developer-api-key"
API Key Generating
Login to https://mystore.lingapos.com;
Click to License from side bar;
Click to Developer API tab;
Click to Key Generator button;
Copy to generated-key;
Send apikey with every request header'.