Search APIs
The Search APIs have implemented the G2P Connect Registry Core APIs specification. These APIs are designed to offer comprehensive searching capabilities across individual and group registries. It utilizes advanced query options for precise results. The API facilitates querying across all Social Registry (SR) registrants. It leverages GraphQL to handle complex queries efficiently. It retrieves only the requisite data for a specific query.
Authentication
OpenG2P Social Registry Search API is secured by OAuth 2.0. It uses Client Credentials Grant Type, i.e., Client ID and Secret to allow the end-user to access the Social Registry database.
Key request parameters - authorization
Once you receive the Client ID and Secret, the next step is to call OAuth 2.0 endpoint to authenticate.
The key parameters are:
Name | Value |
---|---|
Method |
|
Authorization type | Bearer Token |
Auth URI | http://keycloak.keycloak/realms/openg2p/protocol/openid-connect/token |
Body request parameters
Name | Value |
---|---|
client_id | <client_id> |
client_secret | <client_secret> |
grant_type | client_credentials |
Sample cURL request
On receiving the request, OpenG2P authorization system validates the parameters in the request. If the parameters are valid, it generates your access token and returns it in the response.
Sample response
HTTP status code
HTTP Code | Description |
---|---|
200 | The API call is successful. |
400 | Bad Request. The request is invalid, usually due to missing or incorrect parameters. |
401 | Unauthorized. Authentication failed due to an invalid Client ID or Secret. |
Query type
The search api
utilizes GraphQL query parameters. The query parameter enhances the search efficiency and eases the data retrieval. You must consider the following parameters when crafting a GraphQL query parameters.
• Query Filters: When sending a request, you can define specific criteria to filter the data. You can filter based on various parameters such as age, location, or status of the registrants in the SR.
• Fields Selection: GraphQL allows you to specify the fields you need to receive in response based on your query. This means you can tailor the response to include only the relevant data that fulfills your needs. This makes the API response more lightweight and accurate.
• Pagination Parameters: For queries that return large data, it is mandatory to break into several pages through pagination. GraphQL uses the query parameter to set the limit and offset to return the number of records per page.
• Sort Order: You can specify the order to organize the data that you need to receive in response. You can sort ascending or descending based on a specific field.
Sample GraphQL query
For example, the query returns the name, age, gender, and address of next page 20 registrants who are residing in New York, and the ids are sorted in descending order.
API specification
The Search APIs are available in Stoplight at the following link.
Last updated