We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue involves creating an endpoint to retrieve a list of all supported regions in the system.
Method: GET URL: /api/v1/regions
Status Code: 200 Body:
{ "status_code": 200, "message": "Regions fetched successfully", "regions": [ { "id": "uuid", "code": "string", "name": "string", "created_at": "string", "updated_at": "string" } ] }
Error Response (Unauthorized) Status Code: 401 Body:
{ "status_code": 401, "message": "Unauthorized" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
This issue involves creating an endpoint to retrieve a list of all supported regions in the system.
Endpoint
Method: GET
URL: /api/v1/regions
Success Response
Status Code: 200
Body:
Error Response
Error Response (Unauthorized)
Status Code: 401
Body:
Checklist
Error Handling
Security Measures
Tasks
The text was updated successfully, but these errors were encountered: