POST Api/RoutePointUpload/RemovePODAttachment
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": "4ab6f5af-c625-4e22-8061-b9c8b30b4906",
"TaskID": "faf6ebe5-12f1-4e1d-a769-88ec9118a115",
"RoutePointID": "ae339ce6-d3f1-4767-bb12-31b7864d3751",
"ItemID": "8249b19b-2cca-492b-8d62-3a710afa0b82",
"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>4ab6f5af-c625-4e22-8061-b9c8b30b4906</ClientID> <FileName>sample string 5</FileName> <ItemID>8249b19b-2cca-492b-8d62-3a710afa0b82</ItemID> <RoutePointID>ae339ce6-d3f1-4767-bb12-31b7864d3751</RoutePointID> <TaskID>faf6ebe5-12f1-4e1d-a769-88ec9118a115</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": "f491d204-f008-40be-9af3-6c55911f5790",
"Value": "sample string 3",
"RecordOn": "2026-06-24T16:09:41.2593536+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>f491d204-f008-40be-9af3-6c55911f5790</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-06-24T16:09:41.2593536+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>