| Requires any of the roles: | Client, Admin, Partner |
| PUT | /lookup_lists/{Id} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | path | int | Yes | |
| Description | body | string | Yes | |
| IsEnabled | body | bool | Yes | |
| LookupListCategoryId | body | int | Yes | |
| LastModifiedDate | body | DateTime | Yes | |
| RowVersionGuid | body | Guid | Yes |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | int | No | |
| Description | form | string | No | |
| IsEnabled | form | bool | No | |
| LookupListCategoryId | form | int | No | |
| LastModifiedDate | form | DateTime | No | |
| RowVersionGuid | form | Guid | No | |
| ResponseStatus | form | ResponseStatus | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /lookup_lists/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
Description: String,
IsEnabled: False,
LookupListCategoryId: 0,
LastModifiedDate: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
Description: String,
IsEnabled: False,
LookupListCategoryId: 0,
LastModifiedDate: 0001-01-01,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}