Builder data sources
Find the record names associated with a given list of record ids.
get/api/builder/data-source/{data_source_id}/record-names/
Path parameters
data_source_idinteger required
The id of the data_source to find the record names.
Query parameters
record_idsstring
A comma separated list of the record ids to search for.
Response
object required
A dictionary mapping record ids to their names.
Example response
{
"1": "Record name 1",
"2": "Record name 2"
}