Creates a new project under the organization. The number of projects is limited by the organization’s plan. Requires an organization admin API key (ASA_ prefix).
curl --request POST \
--url https://api.autosend.com/v1/account/projects \
--header 'Authorization: Bearer ASA_your-admin-api-key' \
--header 'Content-Type: application/json' \
--data '{
"name": "My New Project",
"domain": "example.com",
"regionKey": "us-east-1"
}'
{
"success": true,
"data": {
"id": "60d5ec49f1b2c72d9c8b1234",
"name": "My New Project",
"domain": "example.com",
"domains": [],
"regionKey": "us-east-1",
"industry": null,
"logo": null,
"address": null,
"trackingOpen": false,
"trackingClick": false
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.autosend.com/llms.txt
Use this file to discover all available pages before exploring further.
ASA_ prefix). Standard project API keys cannot access this endpoint.curl --request POST \
--url https://api.autosend.com/v1/account/projects \
--header 'Authorization: Bearer ASA_your-admin-api-key' \
--header 'Content-Type: application/json' \
--data '{
"name": "My New Project",
"domain": "example.com",
"regionKey": "us-east-1"
}'
{
"success": true,
"data": {
"id": "60d5ec49f1b2c72d9c8b1234",
"name": "My New Project",
"domain": "example.com",
"domains": [],
"regionKey": "us-east-1",
"industry": null,
"logo": null,
"address": null,
"trackingOpen": false,
"trackingClick": false
}
}
ASA_<key>. Standard project API keys (AS_ prefix) will receive a 403 error.100Example: "My New Project"https:// prefix. Accepts a root domain (e.g., example.com) or a subdomain (e.g., mail.example.com).Example: "example.com"us-east-1, us-east-2, ap-south-1Example: "us-east-1"trueShow child attributes
"60d5ec49f1b2c72d9c8b1234""My New Project"null if none was providedus-east-1, us-east-2, or ap-south-1falsefalse{
"success": false,
"error": {
"message": "This endpoint requires an organization admin API key (ASA_ prefix)",
}
}
{
"success": false,
"error": {
"message": "Plan upgrade required"
}
}
curl --request POST \
--url https://api.autosend.com/v1/account/projects \
--header 'Authorization: Bearer ASA_your-admin-api-key' \
--header 'Content-Type: application/json' \
--data '{
"name": "My New Project",
"domain": "example.com",
"regionKey": "us-east-1"
}'
{
"success": true,
"data": {
"id": "60d5ec49f1b2c72d9c8b1234",
"name": "My New Project",
"domain": "example.com",
"domains": [],
"regionKey": "us-east-1",
"industry": null,
"logo": null,
"address": null,
"trackingOpen": false,
"trackingClick": false
}
}