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.
Update a custom table record
PUT /api/v1/custom_object_records/:id
Name | Description |
---|---|
id * | Numeric ID of the custom table record |
Example request
PUT /api/v1/custom_object_records/640362830
Example CURL command
curl "https://company.aha.io/api/v1/custom_object_records/640362830" -d '{"custom_object_record":{"custom_fields":{"name":"Acme parent corp","website":"www.acmeparent.com"}}}' -X PUT \
-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