Riders
Remove rider
DELETE
/api/v1/riders/:idRemoves a rider from the seller's team.
Requires Authorization
SELLER only
Authenticated action
Path parameters
idstringrequired | Rider ID. |
Request
curl --request DELETE \
--url https://api.swiftgoma.com/api/v1/riders/:id \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"removed": true
}
}