Popular Help Content

No popular content.

Purpose: get all of the data associated with a fixture. (see https://github.com/dimagi/commcare-core/wiki/fixtures for the definition of fixture)

Authentication: For more information, please review CommCare's API Authentication Documentation.

Base URLs:


Input parameters (for the list of all fixtures):

NameDescriptionExample
fixture_typeReturns the fixtures of a in a given domain whose data_typefixture_type=city


Output values:

NameDescriptionExample
idFixture UUID1J9NF7B4FTH73435PYJJSL5SJ
fixture_typeName of the fixture's data_typecity
fieldsValues for the custom fields in the fixture.{"name": "Boston", "population": 617594, "state": "Massachusetts"

Note: A call to the Fixture List API endpoint will return a JSON list of objects with these output values.

In order to get the full table via API, use the 'name of the table', which is the same as you would find without the API call from https://www.commcarehq.org/a/[domain]/fixtures (the string in the Table ID column)


Sample input:

https://www.commcarehq.org/a/demo/api/v0.4/fixture/1J9NF7B4FTH73435PYJJSL5SJ/

Sample output:

{
    "fields": {
        "name": "Boston",
        "population": 617594,
        "state": "Massachusetts",
    },
    "fixture_type": "city",
    "resource_uri": "",
    "id": "1J9NF7B4FTH73435PYJJSL5SJ"
}
  • No labels