DELETE User

DELETE User

The DELETE User API allows you to delete an existing user.

On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb.
The format query string parameter controls the desired response format.  Specify either XML or JSON.

/api/v2/user?format=xml/json


Endpoints & API Explorer

NodeAPI EndpointAPI Explorer
USapi/v2/userModel Description/Schema & Parameters

Parameters

The DELETE verb on the User API allows you to delete an existing user. The required and optional parameters for a DELETE call to the User API are outlined below:  

NameTypeDescriptionRequired
IdStringThe User’s unique identifier (GUID). Can be obtained from the User Search API.
CompanyIdIntegerYour unique Company Id found on the Organisation Setup page of the secure website.
IntegrationKeyStringYour unique Integration Key found on the Organisation Setup page of the secure website.

Example

Given that the API is REST-based, you can access the API directly via your web browser to test it using a REST plugin like the Postman plugin for Google Chrome.

Request URL

https://eforms.mobileform.net/api/v2/user?Id=61423b5b432f4121XXXXXXX&CompanyId=XXXXX&IntegrationKey=78eec3032af240XXXXXXX

Below is an unpopulated code block of what a typical DELETE request JSON body to the User API might look like.

Request Body

{
"Id": "",
"CompanyId": "",
"IntegrationKey": ""
}
    • Related Articles

    • DELETE Usergroup

      This API allows you to delete an existing user group. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST DELETE verb. The format query string parameter controls the desired response format. Specify either XML or JSON. ...
    • GET User (User Search)

      The GET verb on the User API finds all users matching the given parameters. The User API allows various usage scenarios, allowing you to update/delete/create users from 3rd party systems using the API. On the Cloud, this API is available via ...
    • DELETE Task

      The Tasks API allows you to retrieve, create and delete Tasks on the platform. This enables scenarios where jobs created/maintained in other systems (e.g. SAP, Salesforce) can be delivered through to your app users automatically. Any new Task created ...
    • PUT User

      The PUT User API allows you to update an existing user. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. Specify either XML or JSON. ...
    • POST User

      The POST User API allows you to create a new user. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. Specify either XML or JSON. ...