Lipisha REST APIs


Delete Role


API Description

This API call deletes a role.

API Endpoint

The API service endpoint for making the Delete Role API call is:

https://developer.lipisha.com/index.php/v2/api/delete_role

API Request

The API request is made via HTTP POST and must be url encoded. Some of the parameters are required while others are optional. The parameters are:

Parameter Description Example
api_key Unique string specifying merchant's Lipisha API key.

This should match the api key that you have generated for your Lipisha account
3aa67677e8bf1d4c8fe886a38c03a860
api_signature Unique string specifying merchant's Lipisha API signature.

This should match the api signature that you have generated for your Lipisha account
SYetmwsNnb5bwaZRyeQ..........KhZNNkCoEx+5x=
api_version String specifying the version of the API in use 1.3.0
api_type String specifying the type of handshake or IPN call Callback
role String specifying the name of the role to be deleted Accountant

API Response

The API reponse will be returned as JSON. Each response will contain a status and content section. The parameters are:

Parameter Description Example
Status
status String specifying whether API Call executed successfully or failed SUCCESS
status_code Integers specifying status code of the API Call result 0000
status_description String containing description of the status Role deleted
Content
role String specifying the name of the role Accountant

JSON Reponse
{
  "status": {
    "status_code": "0000",
    "status_description": "Role deletd",
    "status": "SUCCESS"
  },
  "content": {
    "role": "Accountant"
  }
}

Fork me on GitHub