Get Row
curl --request GET \
--url https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"external_id": "<string>",
"data": {},
"tags": [
"<string>"
],
"searchable_text": "<string>",
"content": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"score": 123
}Custom Data Sources
Get Row
GET
/
api
/
v1
/
custom-data-sources
/
{id_or_slug}
/
rows
/
{external_id}
Get Row
curl --request GET \
--url https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}/rows/{external_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"external_id": "<string>",
"data": {},
"tags": [
"<string>"
],
"searchable_text": "<string>",
"content": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"score": 123
}