CRM related actions
CRM related actions
{}
The entire API V2 documentation is interactive and can be tested here. To the right side of every endpoint you will see a box with an example request. You can click on the "Try it" button to send a request to the server right from the docs. You will need to provide an API key by clicking the ApiKeyAuth_token blue text.
https://api.instantly.ai/
https://developer.instantly.ai/_mock/api/v2/
This entity represents a tag being assigned to a specific campaign or email account. When an email account is assigned a tag, a new custom tag mapping entry is created, which connects the tag (tag_id field) with the email account (resource_id field). You can use it to see which tag si connected to which resource.
https://api.instantly.ai/api/v2/crm-actions/phone-numbers
https://developer.instantly.ai/_mock/api/v2/api/v2/crm-actions/phone-numbers
curl -i -X GET \
https://api.instantly.ai/api/v2/crm-actions/phone-numbers \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Default Response
Unique identifier of the phone number record.
Timestamp when the phone number record was created.
Identifier of the organization that owns this phone number.
Billing subscription ID linked to this phone number.
Twilio resource SID for the phone number.
Next renewal date for the phone number subscription.
[ { "id": "019b8a2d-d117-7efe-b481-3f1048b8c0d1", "timestamp_created": "2026-01-04T18:03:37.111Z", "organization_id": "019b8a2d-d117-7efe-b481-3f113a7e5b09", "phone_number": "+15551234567", "country": "US", "locality": "San Francisco", "subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc", "twilio_sid": "PN998dda028e07a49c8038b2206341d463", "renewal_date": "2026-01-04T18:03:37.111Z", "price": 1 } ]
https://api.instantly.ai/api/v2/crm-actions/phone-numbers/{id}
https://developer.instantly.ai/_mock/api/v2/api/v2/crm-actions/phone-numbers/{id}
curl -i -X DELETE \
https://api.instantly.ai/api/v2/crm-actions/phone-numbers/019b8a2d-d118-79c1-b6ea-be0f3bdbe5d2 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Default Response
Unique identifier of the deleted phone number record.
Timestamp when the deleted record was originally created.
Identifier of the organization that owned the phone number.
Billing subscription ID associated with this number (if any).
{ "id": "019b8a2d-d119-71f3-b2d6-e0d01df26f4f", "timestamp_created": "2026-01-04T18:03:37.113Z", "organization_id": "019b8a2d-d119-71f3-b2d6-e0d1d07efcc4", "phone_number": "+15551234567", "country": "US", "locality": "San Francisco", "subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc", "twilio_sid": "PN998dda028e07a49c8038b2206341d463" }