Poggio
Docs
REST APIV2 BetaSalesforce

Trigger Account Pages

Trigger account page generation or refresh for a Salesforce account. The operation is processed asynchronously and the sync request is updated upon completion.

POST
/v2beta/salesforce/accounts/pages

Authorization

BearerToken
AuthorizationBearer <token>

Pass an OAuth access token or an API token from Settings > MCP Server.

In: header

Request Body

application/json

sync_request_id*string
salesforce_account_id*string
request_type*string
Value in"create" | "refresh"
status*string
Value in"pending" | "completed" | "failed"
max_age_days?|

Response Body

application/json

curl -X POST "https://api.poggio.io/v2beta/salesforce/accounts/pages" \  -H "Content-Type: application/json" \  -d '{    "sync_request_id": "string",    "salesforce_account_id": "string",    "request_type": "create",    "status": "pending"  }'
Empty
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}