GET
/api/congregations
curl \
-X GET https://metropolitanabogota.org/api/congregations \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"items": [
{
"name": "string",
"number": 42,
"city": "string",
"state": "string",
"id": "string",
"circuit": {
"name": "string",
"id": "string"
}
}
],
"total": 42,
"page": 42,
"perPage": 42,
"totalPages": 42,
"hasNextPage": true
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}