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": "04a406e2-8302-4735-8d17-f634fdcc6ba8",
"TaskID": "d8737902-59f4-4bb9-bcbb-aad48ebe3b17",
"RoutePointID": "79bf7b9f-e3f7-4a1e-a412-e96e5c6078a0",
"ItemID": "edc80f08-ec53-4676-8525-21c0f8ee4c50",
"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>04a406e2-8302-4735-8d17-f634fdcc6ba8</ClientID> <FileName>sample string 5</FileName> <ItemID>edc80f08-ec53-4676-8525-21c0f8ee4c50</ItemID> <RoutePointID>79bf7b9f-e3f7-4a1e-a412-e96e5c6078a0</RoutePointID> <TaskID>d8737902-59f4-4bb9-bcbb-aad48ebe3b17</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": "8643bedf-f48a-49ff-8133-29ac06c3f49d",
"Value": "sample string 3",
"RecordOn": "2026-06-06T18:36:18.6491677+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>8643bedf-f48a-49ff-8133-29ac06c3f49d</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-06T18:36:18.6491677+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>