| Value | Description |
|---|---|
| success | The accounts were moved successfully |
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/accounts/ctd/status
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/ctd/status
curl -i -X GET \
'https://api.instantly.ai/api/v2/accounts/ctd/status?host=example.com' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "success": true, "ssl": true, "cname": true, "host": "example.com" }
https://api.instantly.ai/api/v2/accounts/test/vitals
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/test/vitals
curl -i -X POST \
https://api.instantly.ai/api/v2/accounts/test/vitals \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'{ "status": "success", "success_list": [ { … } ], "failure_list": [ { … } ] }
Array of email addresses of the accounts to move
ID of the source workspace (the workspace that the accounts are currently in)
https://api.instantly.ai/api/v2/accounts/move
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/move
curl -i -X POST \
https://api.instantly.ai/api/v2/accounts/move \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"emails": [
"user@example.com"
],
"source_workspace_id": "019b483f-9f81-7e73-b56e-8f7636907411",
"destination_workspace_id": "019b483f-9f81-7e73-b56e-8f77deacf654"
}'{ "status": "success" }
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.