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": "d369e6e3-ed75-40c8-9c8a-25e59b405b46",
"TaskID": "14eb104f-0e95-4039-93fd-e2c3b8d793f6",
"RoutePointID": "412e2990-4fbe-42f0-87e6-c29b34ea85cf",
"ItemID": "fb9d705b-f585-4f86-b3b2-7826ea214523",
"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>d369e6e3-ed75-40c8-9c8a-25e59b405b46</ClientID> <FileName>sample string 5</FileName> <ItemID>fb9d705b-f585-4f86-b3b2-7826ea214523</ItemID> <RoutePointID>412e2990-4fbe-42f0-87e6-c29b34ea85cf</RoutePointID> <TaskID>14eb104f-0e95-4039-93fd-e2c3b8d793f6</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": "a45026b8-89d8-4809-9748-2ce7d8f0564a",
"Value": "sample string 3",
"RecordOn": "2026-08-28T01:12:19.3718376+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>a45026b8-89d8-4809-9748-2ce7d8f0564a</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-08-28T01:12:19.3718376+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>