List
Get row
List
Get row
Get a specific row in a contact table
GET
/
lists
/
contact
/
row
/
<row_id>
curl --request GET \
--url https://api.simpu.co/lists/contact/row/%3Crow_id%3E \
--header 'Authorization: <api-key>'
{
"row": {
"id": "674535b2b39158b9aae90188fcec23eb",
"columns": {
"674535b2b39158b9aae90188fcec23ec": "John Doe",
"674535b2b39158b9aae90188fcec23ed": "john@acme.org",
"674535b2b39158b9aae90188fcec23ee": "9291234567"
},
"created_datetime": "2024-06-28T23:56:38.128604+00:00",
"updated_datetime": "2024-06-28T23:56:38.128604+00:00"
},
"table": {
"id": "674535b2b39158b9aae90188fcec23eb",
"columns": [
{
"id": "674535b2b39158b9aae90188fcec23ec",
"name": "name",
"type": "TEXT"
},
{
"id": "674535b2b39158b9aae90188fcec23ed",
"name": "Email",
"type": "EMAIL"
},
{
"id": "674535b2b39158b9aae90188fcec23ee",
"name": "Mobile",
"type": "PHONE NUMBER"
}
],
"created_datetime": "2024-06-28T23:56:38.128604+00:00",
"updated_datetime": "2024-06-28T23:56:38.128604+00:00"
}
}
Authorizations
An API key to authenticate requests
Path Parameters
The ID of the row to get
Example:
"674535b2b39158b9aae90188fcec23ed"
Response
200
application/json
Successfully retrieved the row
ID of the row
Example:
"674535b2b39158b9aae90188fcec23eb"
Data values for each column in the row
Example:
{
"674535b2b39158b9aae90188fcec23ec": "John Doe",
"674535b2b39158b9aae90188fcec23ed": "john@acme.org",
"674535b2b39158b9aae90188fcec23ee": "9291234567"
}
Date and time the Row was created
Example:
"2024-06-28T23:56:38.128604+00:00"
Date and time the Row was last updated, if any
Example:
"2024-06-28T23:56:38.128604+00:00"
ID of the Table
Example:
"674535b2b39158b9aae90188fcec23eb"
List of column names in the table
ID of the column
Example:
"674535b2b39158b9aae90188fcec23ec"
Name of the column
Example:
"name"
Type of the column
Available options:
TEXT
, NUMBER
, DATE
, PHONE NUMBER
, EMAIL
, URL
, SELECT
, MULTI SELECT
Example:
"TEXT"
Example:
[
{
"id": "674535b2b39158b9aae90188fcec23ec",
"name": "name",
"type": "TEXT"
},
{
"id": "674535b2b39158b9aae90188fcec23ed",
"name": "Email",
"type": "EMAIL"
},
{
"id": "674535b2b39158b9aae90188fcec23ee",
"name": "Mobile",
"type": "PHONE NUMBER"
}
]
Date and time the table was created
Example:
"2024-06-28T23:56:38.128604+00:00"
Date and time the table was last updated, if any
Example:
"2024-06-28T23:56:38.128604+00:00"
curl --request GET \
--url https://api.simpu.co/lists/contact/row/%3Crow_id%3E \
--header 'Authorization: <api-key>'
{
"row": {
"id": "674535b2b39158b9aae90188fcec23eb",
"columns": {
"674535b2b39158b9aae90188fcec23ec": "John Doe",
"674535b2b39158b9aae90188fcec23ed": "john@acme.org",
"674535b2b39158b9aae90188fcec23ee": "9291234567"
},
"created_datetime": "2024-06-28T23:56:38.128604+00:00",
"updated_datetime": "2024-06-28T23:56:38.128604+00:00"
},
"table": {
"id": "674535b2b39158b9aae90188fcec23eb",
"columns": [
{
"id": "674535b2b39158b9aae90188fcec23ec",
"name": "name",
"type": "TEXT"
},
{
"id": "674535b2b39158b9aae90188fcec23ed",
"name": "Email",
"type": "EMAIL"
},
{
"id": "674535b2b39158b9aae90188fcec23ee",
"name": "Mobile",
"type": "PHONE NUMBER"
}
],
"created_datetime": "2024-06-28T23:56:38.128604+00:00",
"updated_datetime": "2024-06-28T23:56:38.128604+00:00"
}
}