Skip to main content
PATCH
/
v1
/
accounts
/
{id}
/
warmup
/
configure
curl -X PATCH https://api.infinipost.co/v1/accounts/acc_1a2b3c4d5e/warmup/configure \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "keywords": ["streetwear", "sneakers", "hypebeast"],
    "postsPerDay": 4
  }'
{
  "accountId": "acc_1a2b3c4d5e",
  "warmupStatus": {
    "enabled": true,
    "currentDay": 3,
    "keywords": ["streetwear", "sneakers", "hypebeast"],
    "postsPerDay": 4,
    "updatedAt": "2024-04-21T20:10:00Z"
  }
}

Path Parameters

id
string
required
The unique account identifier.

Request Body

keywords
array
Update keywords for content discovery.
profilesToFollow
array
Update list of profiles to follow.
postsPerDay
number
Update number of posts per day (1-5).

Response

accountId
string
The account identifier.
warmupStatus
object
Updated warmup configuration.
curl -X PATCH https://api.infinipost.co/v1/accounts/acc_1a2b3c4d5e/warmup/configure \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "keywords": ["streetwear", "sneakers", "hypebeast"],
    "postsPerDay": 4
  }'
{
  "accountId": "acc_1a2b3c4d5e",
  "warmupStatus": {
    "enabled": true,
    "currentDay": 3,
    "keywords": ["streetwear", "sneakers", "hypebeast"],
    "postsPerDay": 4,
    "updatedAt": "2024-04-21T20:10:00Z"
  }
}
Changes to warmup configuration take effect immediately but won’t retroactively affect completed days.