Skip to main content

Quome API Summary

To make requests to the Quome API, use https://demo.quome.cloud/api/v1 as the route prefix and attach the endpoint as seen in the table below. For example, to list all of your Organizations, make the request:

GET https://demo.quome.cloud/api/v1/orgs

All data is returned in JSON.

API Endpoints

Openapi docs page

There is also an openapi docs page provided with the Quome API which can be found at https://demo.quome.cloud/api/v1/spec/docs.html

Users and Organizations

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns the current user/usersGET
Returns a user by their ID/users/:idGET
Returns all your Organizations/orgsGET
Returns a specific Organization/orgs/:orgIDGET
Creates an Organization/orgsPOST
Returns members of an Organization/orgs/:orgID/membersGET
Adds a member to an Organization/orgs/:orgID/membersPOST
Returns all API keys in the Organization/orgs/:orgID/apikeysGET
Creates a new API key in the Organization/orgs/:orgID/apikeysPOST
Deletes an API key from the Organization/orgs/:orgID/apikeys/:idDELETE

Apps

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns all apps in the Organization/orgs/:orgID/appsGET
Creates an app/orgs/:orgID/appsPOST
Returns a specific app/orgs/:orgID/apps/:idGET
Redeploys an app/orgs/:orgID/apps/:idPUT
Deletes an app/orgs/:orgID/apps/:idDELETE
Returns the logs for an app/orgs/:orgID/apps/:id/logsGET

Databases

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns all databases in the Organization/orgs/:orgID/dbaasGET
Creates a database/orgs/:orgID/dbaasPOST
Returns a specific database/orgs/:orgID/dbaas/:idGET
Updates a database/orgs/:orgID/dbaas/:idPUT
Deletes a database/orgs/:orgID/dbaas/:idDELETE

Secrets

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns all Secrets in the Organization/orgs/:orgID/secretsGET
Creates a Secret/orgs/:orgID/secretsPOST
Returns a specific Secret/orgs/:orgID/secrets/:idGET
Updates a Secret/orgs/:orgID/secrets/:idPUT
Deletes a Secret/orgs/:orgID/secrets/:idDELETE

App Deployments

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns details for all deployments in the Organization, including their SBOM/orgs/:orgID/apps/:id/deploymentsGET
Returns a specific a deployment/orgs/:orgID/apps/:id/deployments/:deployment_idGET

Events

DescriptionEndpointHTTP Request TypeInput parametersError Codes
Returns all events in the Organization's audit log/orgs/:orgID/eventsGET