GET
/
lists
/
contact
curl --request GET \
  --url https://api.simpu.co/lists/contact \
  --header 'Authorization: <api-key>'
{
  "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

Authorization
string
header
required

An API key to authenticate requests

Response

200
application/json
Successfully retrieved the contact table.
id
string
required

ID of the Table

Example:

"674535b2b39158b9aae90188fcec23eb"

columns
object[]
required

List of column names in the table

Example:
[
  {
    "id": "674535b2b39158b9aae90188fcec23ec",
    "name": "name",
    "type": "TEXT"
  },
  {
    "id": "674535b2b39158b9aae90188fcec23ed",
    "name": "Email",
    "type": "EMAIL"
  },
  {
    "id": "674535b2b39158b9aae90188fcec23ee",
    "name": "Mobile",
    "type": "PHONE NUMBER"
  }
]
created_datetime
string

Date and time the table was created

Example:

"2024-06-28T23:56:38.128604+00:00"

updated_datetime
string

Date and time the table was last updated, if any

Example:

"2024-06-28T23:56:38.128604+00:00"