GET \organizations\complete

Introduction

This API will allow the user to query for complete information on services. The API can be called without passing a ID parameter in the path to get a specific service. Please note that if you are searching for a list of services and don’t need all the information the \services call will be faster.

Authorization

The authorization will contain an API key and also will use an OAuth2 access token. An API key will be provided to each client that intends to consume this API. A development key and also a separate production key will be provided. If this key is not included then an authorization error will be returned.

The process for getting an OAuth2 token can be found here Authorization

Scope Needed For This API - mi-cie.hub/read

 

Rest URL

The following are the URLs for this API.

Environment

URL

Environment

URL

UAT

GET https://directory-uat.mi-cie.org/v1/services/complete/{id}

GET https://directory-uat.mi-cie.org/v1/services/complete/

Production

GET https://directory.mi-cie.org/v1/services/complete/{id}

GET https://directory.mi-cie.org/v1/services/complete

Swagger Definitions

The following are the URLs for this API.

Headers

The following will be headers that will need to be supplied

Header

Description

Header

Description

x-api-key

This will be a key that will provided by a community information exchange administrator.

ContentType

application/json

Authorization

This will be the access token that was retrieved using your client id and secret

Request

Note that the person ID passed as a parameter in the URL as documented in the REST URL section.

Data Element

Description

Default

Data Element

Description

Default

Path Parameter

id

This will be the service id of the requested record in the directory.

*Please note that this is only needed if you want to get a specific service payload for a ID.

 

Query String

query

A query parameter that will filter out the services that will be returned. This is an json object and

The following lists commonly used query strings used for this API \organizations | Common Queries

 

page

This will be which page of data that the user wants to be returned.

Default to Page 1

per_page

This will be the number of records that can be queried at a time. The maximum that can be queried is 30.

Default to 10

 

Response

The following will be the response values from the calling of the API. The error responses will conform ]to the following specification. RFC 7807: Problem Details for HTTP APIs .

HTTP Status Code

Description

Response Example

HTTP Status Code

Description

Response Example

200

Successful retrieval of a person record.

 

[ { "id": 969, "name": "CHILDREN'S ADVOCACY CENTER OF SOUTHWEST MICHIGAN", "alternate_name": "BERRIEN COUNTY COUNCIL FOR CHILDREN, CHILDRENS ADVOCACY CENTER OF SOUTHWEST MICHIGAN", "organization_type": "Nonprofit - Incorporated", "source_id": 78135838, "source": "icarol", "description": "Supports children through a coordinated response to child abuse that includes prevention, assessment and intervention.", "email": "info@swmichigancac.org", "url": "www.swmichigancac.org", "tax_status": null, "tax_id": "38-2265793", "schedule_notes": "Mon, Wed 9am-8pm; Tue, Thu-Fri 9am-5pm", "year_incorporated": "1986", "legal_status": null, "contact": null, "region": "GRYP", "locations": [ { "id": "970", "url": "www.swmichigancac.org", "name": "CHILDREN'S ADVOCACY CENTER OF SOUTHWEST MICHIGAN", "source": "icarol", "latitude": "42.0225356", "longitude": "86.4205098", "source_id": "78174387", "description": "Located on Old US 31 near intersection of Marquette Woods Road and US-31", "alternate_name": "BERRIEN COUNTY COUNCIL FOR CHILDREN, CHILDRENS ADVOCACY CENTER OF SOUTHWEST MICHIGAN", "schedule_notes": "Mon, Wed 9am-8pm; Tue, Thu-Fri 9am-5pm", "transportation": "No public transportation available", "organization_id": "969", "organization_name": "CHILDREN'S ADVOCACY CENTER OF SOUTHWEST MICHIGAN", "accessibility_for_disabilities": "" } ], "programs": [ { "id": "2048", "name": "CHILDREN'S ADVOCACY CENTER", "alternate_name": "", "organization_id": "969" } ], "services": [ { "id": "1", "url": "www.swmichigancac.org", "fees": "No fees", "name": "COUNSELING SERVICES AND PREVENTION FOR CHILDREN WHO ARE ABUSED", "email": "info@swmichigancac.org", "source": "icarol", "status": "1", "program": "CHILDREN'S ADVOCACY CENTER", "language": "Translation services available", "licenses": "", "wait_time": "", "program_id": "", "description": "Provides forensic interviews for sexually abused children, counseling services for sexually abused children, including adults survivors of child sexual abuse, and prevention education.", "eligibility": "Children and families of suspected child abuse in Southwest Michigan", "location_id": "970", "service_area": "Berrien, Cass and Van Buren Counties", "accreditations": "", "alternate_name": "", "schedule_notes": "Mon, Wed 9am-8pm; Tue, Thu-Fri 9am-5pm", "organization_id": "969", "payment_accepted": "Not applicable", "required_document": "Referral information", "source_id_program": "78143321", "source_service_id": "1106", "application_process": "- Referral required from Child Protective Services or Law Enforcement for forensic interviewing services - Therapy services available to children and adult survivors of child sexual abuse", "area_served_description": "Berrien, Cass and Van Buren Counties", "interpretation_services": "", "source_id_programAtSite": "78189075" } ], "physical_address": [ { "id": "32300", "city": "Saint Joseph", "county": "Berrien", "region": "GRYP", "country": "United States", "address_1": "4938 Niles Road", "address_2": "", "address_3": "", "address_4": "", "attention": "", "is_physical": "1", "postal_code": "49085", "state_province": "MI", "organization_id": "969" } ], "phones": [ { "id": "2187227", "type": "Main", "number": "2695569640", "language": "", "extension": "", "department": "", "description": "", "confidential": "0", "organization_id": "969", "phone_type_hierarchy": "1", "service_at_location_id": "" }, { "id": "2187228", "type": "Fax", "number": "2695569643", "language": "", "extension": "", "department": "", "description": "", "confidential": "0", "organization_id": "969", "phone_type_hierarchy": "14", "service_at_location_id": "" } ], "regular_schedule": [ { "id": "1248184", "weekday": "", "opens_at": "", "closes_at": "", "site_hours": "", "service_hours": "", "organization_id": "969", "source_service_id": "", "administrative_hours": "Mon, Wed 9am-8pm; Tue, Thu-Fri 9am-5pm", "service_at_location_id": "" } ], "schedule": [] } ]

403

Request is unauthorized and will not be processed. This will happen if the authorization header does not contain a valid client id and secret.

 

 

{ "message": "Forbidden" }

 

 

400

Request is malformed and will not be processed.

 

{ "type": "cie-directory/validation-error", "title": "Invalid Parameter", "detail": "parameter per_page was greater then the max allowed for this endpoint. per_page: 10000 max_allowed: 100", "instance": "237869a1-67f0-4a68-9500-734b3956517b" }

 

Example CURL for this API Call

The following is an example CURL for calling this api.