Lipisha REST APIs


Delete User


API Description

This API call deletes a user.

API Endpoint

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

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

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
user_name The user name to be used when logging in to the system by the new user johndoe

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 User created successfully
Content
user_name The user name of the user johndoe

JSON Reponse
{
  "status": {
    "status_code": "0000",
    "status_description": "User deleted",
    "status": "SUCCESS"
  },
  "content": {
    "user_name": "johndoe"
  }
}

Fork me on GitHub