StPfeffer / rusty-roads

A simple route manager application written in Rust
MIT License
0 stars 0 forks source link

Feature Request: Add New Country API Routes #97

Closed StPfeffer closed 3 weeks ago

StPfeffer commented 3 weeks ago

Description

Endpoints

Method Endpoint Description
GET /api/v1/countries/alpha2/{code} Retrieve details of a country using its ISO 3166-1 alpha-2 code
GET /api/v1/countries/alpha3/{code} Retrieve details of a country using its ISO 3166-1 alpha-3 code
GET /api/v1/countries/numeric3/{code} Retrieve details of a country using its ISO 3166-1 numeric-3 code
GET /api/v1/countries/:countryId/states Retrieve all the states of the country referring to the given ID
GET /api/v1/countries/alpha2/{code}/states Retrieve all the states of a country using its ISO 3166-1 alpha-2 code
GET /api/v1/countries/alpha3/{code}/states Retrieve all the states of a country using its ISO 3166-1 alpha-3 code
GET /api/v1/countries/numeric3/{code}/states Retrieve all the states of a country using its ISO 3166-1 numeric-3 code

Type of change

Checklist