PATCH api/User
Request Information
URI Parameters
None.
Body Parameters
UserPatchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | UserPatchRequestFields |
None. |
Request Formats
application/json, text/json
Sample:
{
"Data": {
"UserId": "sample string 1",
"Action": "sample string 2",
"Type": "sample string 3",
"Value": "sample string 4",
"Token": "sample string 5"
}
}
application/xml, text/xml
Sample:
<UserPatchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignAPI.Models.Requests">
<Data>
<Action>sample string 2</Action>
<Token>sample string 5</Token>
<Type>sample string 3</Type>
<UserId>sample string 1</UserId>
<Value>sample string 4</Value>
</Data>
</UserPatchRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserPatchResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | BaseResponseItems |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": {
"Processed": "sample string 1",
"Error": "sample string 2"
}
}
application/xml, text/xml
Sample:
<UserPatchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignAPI.Models.Responses">
<Response>
<Error>sample string 2</Error>
<Processed>sample string 1</Processed>
</Response>
</UserPatchResponse>