Update rider state and city
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"state": "Lagos",
"city": "Ikeja"
}
Request Code Samples
curl --location --request POST '/admin/rider/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"state": "Lagos",
"city": "Ikeja"
}'
Responses
application/json {
"data": null,
"message": "Okay"
}
Modified at 2024-11-26 10:55:52