Delete a Profile
DELETE /routingprofiles/{routingprofileid}
Deletes a specific routing profile in an account based on its routingprofileID
, which was returned at the time the profile was created.
Resource URL
https://api.trimblemaps.com/routing/v1/routingprofiles/{routingprofileid}
Request
Path Parameter
Name | Description | Data Type |
---|---|---|
routingProfileId (Required)
| Unique identifier of the routing profile |
int |
Response
Name | Description | Data Type |
---|---|---|
message
| Indicates whether the delete operation was successful |
string |
data
| Returns true if delete operation was successful |
boolean |
error
| Returns when the delete operation was unsuccessful with an appropriate message and error code |
object |
Sample Request
https://api.trimblemaps.com/routing/v1/routingprofiles/979184
Sample Response
{
"message": "Routing Profile 979184 was removed successfully.",
"data": true
}