SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Riders

List my riders

GET/api/v1/riders

Lists the riders working for the signed-in seller.

Requires Authorization
SELLER only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/riders \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": [
    {
      "id": "rider_1a2b3c",
      "userId": "9c8d7e6f",
      "sellerProfileId": "sp_2b3c4d",
      "name": "Jean Kabila",
      "status": "ACTIVE",
      "createdAt": "2026-01-20T09:00:00.000Z"
    }
  ]
}