Delete user¶
API Endpoint¶
| Application | Method | Service |
|---|---|---|
| IED | Delete | http://ie-dps-communication-broker:\ |
Delete User¶
The request parameter used when deleting the user with Databus using DPS API.
| Parameter Name | Data Type | Mandatory/Optional(IED) | Description | |
|---|---|---|---|---|
| appParams | - | Object | Mandatory | Data model of application parameters |
| appi_id | String | Mandatory | The instance name of the application that needs to be used on the Databus using DPS API | |
| device_name | String | Mandatory | Name of the device (IED) on which the application is installed | |
| credential | - | Object | Mandatory | Data model of credential |
| username | String | Mandatory | Name of the user to be created on the Databus to publish or subscribe the data | |
| password | String | Mandatory | The corresponding password of the user created on Databus |
Sample Request¶
{
"appParams": {
"appId": "app1",
"deviceName": "abhiyanta1"
},
"credential": {
"userName": "admin",
"password": "admin123"
}
}
Response Parameter¶
The response parameter received when deleting the user with Databus using DPS API.
| Parameter Name | Data Type | Description | |
|---|---|---|---|
| error code | - | Object | Error code the message |
| code | Integer | The response type code number | |
| description | String | The response type code description | |
| message | - | String | Description message about the response |
| jobID | - | String | Job information |
| responseData | - | Object | Response data of the requested topic |
| datasetNum | Integer | data set value is set "0" as the request is post user | |
| totalDataset | Integer | total data set value is set "0" as the request is post user | |
| responseData | String | Response data is set to "0" of the requested topic, as the request is post user | |
| severity | - | String | Information |
Sample Response¶
{
"errorCode": {
"code": 451,
"description": "invalid Schema"
},
"message": "Error message from code",
"jobId": "",
"responseData": {},
"severity": "error",
"status": "failed",
"timeStamp": "2023-08-01T12:34:56.000Z"
}