Custom table records API

Custom tables have a different set of records for each product. This means that if you want to create one or list them you must scope them to a product.

Once you have the ID of a specific custom table record, you can get, modify, or delete them on the root custom table records resource.

Custom tables are an Enterprise+ exclusive feature.

Create a custom table record

POST /api/v1/products/:product_id/custom_objects/:key/records

Parameters
NameDescription
product_id *

Numeric ID or key of the product

key *

API key of the custom table for which to create a record

Example request

POST /api/v1/products/PRJ1/custom_objects/customers/records

Example CURL command

curl "https://company.aha.io/api/v1/products/PRJ1/custom_objects/customers/records" -d '{"custom_object_record":{"custom_fields":{"name":"Major conglomerate","website":"www.conglom.com"}}}' -X POST \
	-H "Authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab" \
	-H "Content-Type: application/json" \
	-H "Accept: application/json"

Request

authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab
contentType: application/json
accept: application/json

Request body

Response

Status: 200 OK
contentType: application/json; charset=utf-8

Response body