POST Api/RoutePointUpload/RemoveSignature
Request Information
URI Parameters
None.
Body Parameters
RoutePointUploadParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | globally unique identifier |
None. |
|
| TaskID | globally unique identifier |
None. |
|
| RoutePointID | globally unique identifier |
None. |
|
| ItemID | globally unique identifier |
None. |
|
| FileName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientID": "4e053df9-781a-499b-83e0-95fe5b36d90f",
"TaskID": "fcff4277-c2eb-4dbf-b3f4-e4d956f5a71e",
"RoutePointID": "a8b7ef80-a7da-4f5d-adf8-301f62e242d6",
"ItemID": "b4fc7b21-4aa2-47db-a809-955f8e956645",
"FileName": "sample string 5"
}
application/xml, text/xml
Sample:
<RoutePointUploadParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity.Tasks"> <ClientID>4e053df9-781a-499b-83e0-95fe5b36d90f</ClientID> <FileName>sample string 5</FileName> <ItemID>b4fc7b21-4aa2-47db-a809-955f8e956645</ItemID> <RoutePointID>a8b7ef80-a7da-4f5d-adf8-301f62e242d6</RoutePointID> <TaskID>fcff4277-c2eb-4dbf-b3f4-e4d956f5a71e</TaskID> </RoutePointUploadParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Message | Collection of string |
None. |
|
| ResponseCodes | Collection of integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| Value | string |
None. |
|
| RecordOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Message": [
"sample string 1",
"sample string 2"
],
"ResponseCodes": [
1,
2
],
"Id": "6be5b6a3-234f-4c0e-8534-359236945a0f",
"Value": "sample string 3",
"RecordOn": "2026-03-26T03:22:13.5805372+04:00"
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity">
<Id>6be5b6a3-234f-4c0e-8534-359236945a0f</Id>
<IsValid>true</IsValid>
<Message xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Message>
<RecordOn>2026-03-26T03:22:13.5805372+04:00</RecordOn>
<ResponseCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ResponseCodes>
<Value>sample string 3</Value>
</Result>