Add-ons
Limit the number of results
Offset for pagination
Count flag (should be 0 or true/false)
Search keyword to filter the languages
Filter languages by status (1 for active)
Filter by default language
Bearer token for authentication.
Successfully retrieved the language list
GET /backend/api/language HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
Successfully retrieved the language list
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got all language List</message>
</object>
This endpoint retrieves the list of available plugins.
Bearer token for authentication.
Successfully retrieved the plugin list
No plugins found
GET /backend/api/plugins/ HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the plugin list</message>
</object>
This endpoint retrieves the details of a specific plugin by its ID.
The ID of the plugin.
Optional query parameter for the plugin ID.
Bearer token for authentication.
Successfully retrieved the plugin details
Plugin not found
GET /backend/api/plugins/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the plugin detail</message>
</object>
This endpoint updates the status of a specific plugin.
The ID of the plugin to be updated.
Bearer token for authentication.
0
Successfully updated the plugin status
Plugin not found
PUT /backend/api/plugins/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 20
"pluginStatus='0'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully updated the plugin status</message>
</object>
This endpoint updates PayPal settings, including client credentials and test mode.
Bearer token for authentication.
The client ID for PayPal API.
The client secret for PayPal API.
Flag to indicate if PayPal is in test mode.
Successfully updated the PayPal payment settings
Invalid request, missing required parameters
POST /backend/api/paypal-payment HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 55
"clientId='text'&clientSecret='text'&isTest=true"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Paypal settings updated successfully</message>
</object>
Last updated