Querying records with an ID list

From DreamFactory
Jump to: navigation, search
DreamFactoryTutorialsQuerying records with an ID list

GET records in a SQL or NoSQL database with an ID list. Try these examples in the 'API Docs' tab of the DreamFactory Admin Console or from the command line with cURL.

API Endpoint

GET https://{url}/api/v2/{api_name}/_table/{table_name}?ids={id_list}

API Docs Screenshot

Swagger-ids.png

Example - GET contact records with IDs 1, 2, and 3

  • Table name: contact
  • IDs parameter in API call:
    1, 2, 3
  • Request URL:
    https://foo.com/api/v2/db/_table/contact?ids=1%2C%202%2C%203