NAiOS IconNAiOS Logo
Volver al catálogo

Omnisend

omnisend

Omnisend is a marketing automation platform for ecommerce businesses, focusing on email and SMS marketing.

Acciones
10
Triggers
0
Autenticación
OAuth gestionado
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (10)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Create BatchOMNISEND_CREATE_BATCHAcción

Tool to create a new batch operation for multiple items. use when you need to process many records asynchronously in one call, e.g., bulk contacts, products, orders, or events. use after preparing the items list to avoid rate limits.

Parámetros de entrada

  • itemsobject[]Obligatorio

    Array of payload objects for each operation.

  • methodstringObligatorioenum

    HTTP method for all operations in this batch. Must be POST or PUT.

    POSTPUT
  • eventIDstring

    Required when endpoint is 'events'; the ID of the event to trigger.

  • endpointstringObligatorioenum

    Target endpoint for the operations.

    contactsordersproductseventscategories

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create or Update ContactOMNISEND_CREATE_OR_UPDATE_CONTACTAcción

Tool to create or update a contact in omnisend. use after collecting subscriber details.

Parámetros de entrada

  • citystring

    City name

  • genderstringenum

    Contact's gender ('m' or 'f')

    mf
  • addressstring

    Street address

  • countrystring

    Full country name

  • lastNamestring

    Contact's last name

  • birthdateanydate

    Birthdate in YYYY-MM-DD format

  • firstNamestring

    Contact's first name

  • postalCodestring

    Postal or ZIP code

  • countryCodeany

    ISO 3166-1 alpha-2 country code

  • identifiersobject[]Obligatorio

    One or more ways to identify the contact; at least one required

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete ProductOMNISEND_DELETE_PRODUCTAcción

Tool to remove a product from omnisend by its id. use when you need to delete a product and ensure it is no longer available in your catalog.

Parámetros de entrada

  • product_idstringObligatorio

    Unique identifier of the product to delete.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get BatchesOMNISEND_GET_BATCHESAcción

Tool to retrieve a list of batch operations. use after initiating a batch job to monitor its progress and results.

Parámetros de entrada

  • endpointstringObligatorioenum

    Target endpoint for the batch operations to retrieve.

    contactsordersproductseventscategories

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Batch InformationOMNISEND_GET_BATCH_INFORMATIONAcción

Tool to retrieve information about a specific batch by id. use after submitting a batch when you need a detailed status and counts.

Parámetros de entrada

  • batchIdstringObligatorio

    The unique identifier of the batch to retrieve

Parámetros de salida

  • dataobject[]Obligatorio

    Detailed list of batch item records; structure depends on batchType

  • errorstring

    Error if any occurred during the execution of the action

  • statusstringObligatorio

    Current status of the batch (e.g., 'pending', 'completed')

  • batchIdstringObligatorio

    The unique identifier for the batch

  • batchTypestringObligatorio

    Type of batch, e.g., 'import' or 'export'

  • createdAtstringObligatorio

    ISO 8601 timestamp when the batch was created

  • updatedAtstringObligatorio

    ISO 8601 timestamp when the batch was last updated

  • errorCountintegerObligatorio

    Number of items that encountered errors

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

  • totalCountintegerObligatorio

    Total number of items in the batch

  • processedCountintegerObligatorio

    Number of successfully processed items

Get Batch ItemsOMNISEND_GET_BATCH_ITEMSAcción

Tool to retrieve processed items of a specific batch by id. use when you need to inspect individual results of a batch operation after fetching batch details.

Parámetros de entrada

  • batchIdstringObligatorio

    The unique identifier of the batch whose items you want to retrieve.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get ContactOMNISEND_GET_CONTACTAcción

Tool to retrieve details of a single contact by id. use when you already have a contactid and need the full profile.

Parámetros de entrada

  • contactIdstringObligatorio

    Unique identifier of the contact to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List ContactsOMNISEND_LIST_CONTACTSAcción

Tool to retrieve a paginated list of contacts with optional filtering. use when you need to fetch contacts in batches and handle cursor pagination.

Parámetros de entrada

  • tagstring

    Filter contacts by tag.

  • afterstring

    Cursor for pagination: contacts after this base64-encoded ContactID.

  • emailstring

    Filter contacts by exact email address.

  • limitinteger

    Number of results per page. Defaults to 100, maximum 250.

  • phonestring

    Filter contacts by full phone number including country code.

  • beforestring

    Cursor for pagination: contacts before this base64-encoded ContactID.

  • statusstringenum

    Filter contacts by email channel status.

    subscribednonSubscribedunsubscribed
  • segmentIDinteger

    Filter contacts by segment ID.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List ProductsOMNISEND_LIST_PRODUCTSAcción

Tool to retrieve a paginated list of products. use when syncing product catalog before campaign creation.

Parámetros de entrada

  • sortstringenum

    Field to sort by. Allowed values: 'date', 'createdAt', or 'updatedAt'.

    datecreatedAtupdatedAt
  • limitinteger

    Maximum number of products to return. Defaults to 100.

  • offsetinteger

    Zero-based index of the first product to return. Use to page through results.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update ContactOMNISEND_UPDATE_CONTACTAcción

Tool to update fields of an existing contact by id. use after retrieving contact id. patch https://api.omnisend.com/v3/contacts/{contactid} example: updatecontact(contactid="..., body={firstname: 'john'})

Parámetros de entrada

  • bodyobjectObligatorio

    Fields to update on the contact

  • contactIdstringObligatorio

    Unique identifier of the contact to update

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not