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
Description Create all the classes and functions needed to access the GET endpoint {{base_url}}/parishes
GET
{{base_url}}/parishes
File Location
- data |__ remote - domain |_ mamagers
Requirements
endpoints
services
Response
Parish
Example Response
{ "links": { "first": "https://api.vost.pt/v1/parishes?page=1", "last": "https://api.vost.pt/v1/parishes?page=3092", "next": "https://api.vost.pt/v1/parishes?page=2" }, "data": [ { "type": "parishes", "id": "3086", "attributes": { "code": "480106", "name": "LOMBA", "created_at": "2019-07-02 13:31:18", "updated_at": "2019-07-02 13:31:18" }, "links": { "self": "https://api.vost.pt/v1/parishes/3086" } } ], "meta": { "items": 1, "total": 3092 } }
The text was updated successfully, but these errors were encountered:
Vanethos
Successfully merging a pull request may close this issue.
Description
Create all the classes and functions needed to access the
GET
endpoint{{base_url}}/parishes
File Location
Requirements
endpoints
class where the endpoint is declared must be createdservices
class where the mapping fromResponse
toParish
must be createdExample Response
The text was updated successfully, but these errors were encountered: