AppGyver GET request getting a 400 response

Hi,

I am trying to retrieve a record in my table by ID, but am getting a 400 error response
{“error”:“ERROR_QUERY_PARAMETER_VALIDATION”,“detail”:{“user_field_names”:[{“error”:“Must be a valid boolean.”,“code”:“invalid”}]}}

This is my request:
https://api.baserow.io/api/database/rows/table/121233/?user_field_names=true/1

Any ideas as to how to resolve this?

I found the issue from reading the documentation here:
https://api.baserow.io/api/redoc/#tag/Database-table-rows/operation/get_database_table_row

The request for GET record was incorrect. You must edit the relative path in the AppGyver data resource GET records as follows:
https://api.baserow.io/api/database/rows/table/{table_id}/{row_id}/?user_field_names=true

Hello @Hyunsung_Jhoo, glad to see that you managed to resolve the issue! I’ve marked your answer as a ‘Solution’ for future readers :slightly_smiling_face: