I currently am making an api call and getting this response:[ { "attributes": { "accounting_administrator": false, "anniversary": null, ... }, "id": "17252523", "links": { "html": "https://example.com/people/AC17252523" }, "relationships": { "gender": { "data": { "id": "6868314", "type": "Gender" } }, "primary_campus": { "data": null } }, "type": "Person" } ]
I have set the Data Types in the schema tab like so(see screenshot):
In the api call I have it set to Data Type Parse as Data Type Members:
I then add an API Call to a row in the UI:
Then I set the text field I'd like to display an "ID" field. Like so:
Then when I test the project I only get the Default ID. When I do it this way with firestore it works. I know the server is responding but I don't know what I"m doing wrong. Any ideas?