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/
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": "019a97dc-9970-79bb-b45c-e8c6bea004f2", "timestamp_created": "2025-11-18T16:46:48.176Z", "organization_id": "019a97dc-9970-79bb-b45c-e8c78e11416b", "phone_number": "+15551234567", "country": "US", "locality": "San Francisco", "subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc", "twilio_sid": "PN998dda028e07a49c8038b2206341d463", "renewal_date": "2025-11-18T16:46:48.176Z", "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/019a97dc-9971-76bf-a104-701bb8970a6b \
-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": "019a97dc-9971-76bf-a104-701cbd8ba8c8", "timestamp_created": "2025-11-18T16:46:48.177Z", "organization_id": "019a97dc-9971-76bf-a104-701d6ffdddb5", "phone_number": "+15551234567", "country": "US", "locality": "San Francisco", "subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc", "twilio_sid": "PN998dda028e07a49c8038b2206341d463" }