← Tools Reference

Twenty CRM

Twenty CRM integration (Productivity, Marketing). Imported from open-connector.

API key6 toolshttps://api.twenty.com
GET
twenty_crm_list_metadata_objects
List Twenty metadata objects for the connected workspace.

/rest/metadata/objects

GET
twenty_crm_list_records
List Twenty records for one workspace object using the generated schema-per-tenant REST API.

/rest/{objectNamePlural}

7 parameters
ParamTypeRequiredDescription
objectNamePluralstringrequiredThe Twenty plural object API name, such as companies, people, opportunities, or…
limitintegeroptionalThe maximum number of records to return.
startingAfterstringoptionalThe Twenty record UUID.
endingBeforestringoptionalThe Twenty record UUID.
filterobjectoptionalA JSON object accepted or returned by Twenty.
orderByobjectoptionalA JSON object accepted or returned by Twenty.
depthintegeroptionalThe relation depth to include in the returned records.
GET
twenty_crm_retrieve_record
Retrieve one Twenty record by object API name and record UUID.

/rest/{objectNamePlural}/{id}

2 parameters
ParamTypeRequiredDescription
objectNamePluralstringrequiredThe Twenty plural object API name, such as companies, people, opportunities, or…
idstringrequiredThe Twenty record UUID.
POST
twenty_crm_create_record
Create one Twenty record for a workspace object.

/rest/{objectNamePlural}

2 parameters
ParamTypeRequiredDescription
objectNamePluralstringrequiredThe Twenty plural object API name, such as companies, people, opportunities, or…
dataobjectoptionalA JSON object accepted or returned by Twenty.
PATCH
twenty_crm_update_record
Update one Twenty record by object API name and record UUID.

/rest/{objectNamePlural}/{id}

3 parameters
ParamTypeRequiredDescription
objectNamePluralstringrequiredThe Twenty plural object API name, such as companies, people, opportunities, or…
idstringrequiredThe Twenty record UUID.
dataobjectoptionalA JSON object accepted or returned by Twenty.
DELETE
twenty_crm_delete_record
Delete one Twenty record by object API name and record UUID.

/rest/{objectNamePlural}/{id}

2 parameters
ParamTypeRequiredDescription
objectNamePluralstringrequiredThe Twenty plural object API name, such as companies, people, opportunities, or…
idstringrequiredThe Twenty record UUID.