Skip to main content
POST
/
api
/
datastores
/
v2
/
collections
/
{collectionId}
/
documents
/
query
Query Document
curl --request POST \
  --url https://example.com/v1/api/datastores/v2/collections/{collectionId}/documents/query \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "content.userId": {
    "$eq": "123456789"
  }
}
'

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication.

Path Parameters

collectionId
string
required

The ID of the collection.

Body

application/json

A MongoDB-style query object.

{key}
object

Response

200

OK (Response body is not documented)