Pular para o conteúdo principal
PUT
/
crm
/
v3
/
lists
/
{listId}
/
schedule-conversion
Schedule or update the conversion of a list to static
curl --request PUT \
  --url https://api.hubapi.com/crm/v3/lists/{listId}/schedule-conversion \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversionType": "CONVERSION_DATE",
  "day": 123,
  "month": 123,
  "year": 123
}
'
{
  "listId": "<string>",
  "convertedAt": "2023-11-07T05:31:56Z",
  "requestedConversionTime": {
    "conversionType": "CONVERSION_DATE",
    "day": 123,
    "month": 123,
    "year": 123
  }
}

Produtos suportados

Requer um dos seguintes produtos ou superior.
Marketing HubMarketing Hub -Grátis
Sales HubSales Hub -Grátis
Service HubService Hub -Grátis
Content HubContent Hub -Grátis

Autorizações

Authorization
string
header
obrigatório

The access token received from the authorization server in the OAuth 2.0 flow.

Parâmetros de caminho

listId
string
obrigatório

The ID of the list to schedule the conversion for.

Corpo

application/json
conversionType
enum<string>
padrão:CONVERSION_DATE
obrigatório

Specifies the type of conversion (CONVERSION_DATE).

Opções disponíveis:
CONVERSION_DATE
day
integer<int32>
obrigatório

The day component of the conversion date.

month
integer<int32>
obrigatório

The month component of the conversion date.

year
integer<int32>
obrigatório

The year component of the conversion date.

Resposta

successful operation

listId
string
obrigatório

The unique identifier of the list for which the conversion details are provided.

convertedAt
string<date-time>

The date and time when the list was converted.

requestedConversionTime
CONVERSION_DATE · object

The scheduled time for the list conversion, which can be based on a specific date or inactivity period.

Last modified on December 16, 2025