GraphQL API
GraphQL API Endpoint
Our GraphQL API is available with the following URLS, based on environment:
Development | Production |
---|---|
https://gql.bloomplus.dev/gql | https://gql.bloomplus.com/gql |
Some mutations
/queries
do not require authentication and others will. See the Enablement Services Authenticate page for instructions on how to authenticate.
Creating a user
Once you’ve created a user in your application and completed any necessary KYC checks, the next step is to create a corresponding user in our database. This can be done using the registerUserOrganization mutation. This mutation will return the user object as it’s stored in our system, including a unique user_id
. Be sure to save this user_id
—it’s required for authenticating and accessing additional queries and mutations in our API.
Importing a Connection
After creating and authenticating your user or organization, the next step is to import the previously established aggregator connection. This allows our system to ingest and categorize transactions linked to that connection. To do this, use the importConnection mutation.
Additional queries
can be found in our API References.
Updated 4 days ago