• Custom Data/
    Custom Data (Flows) API/
    Entries/
    Delete an Entry

    Delete an Entry

    DELETE Delete an Entry

    https://api.moltin.com/v2/flows/:slug/entries/:id
    

    Parameters

    Path parameters

    NameRequiredTypeDescription
    idRequiredstringThe ID of the entry you are requesting to delete.
    slugRequiredstringThe slug for the Flows you are requesting entries for.

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token required to get access to the API.

    Request Examples

    Curl

    curl -X DELETE https://api.moltin.com/v2/flows/:flowSlug/entries/:entryId \
        -H "Authorization: Bearer XXXX"
    

    JavaScript SDK

    const flowSlug = "flow-slug";
    const entryId = "25617d3e-14a6-434c-bfab-3fda87517aaf";
    
    
    // Where `EPCC` is an authenticated client
    await EPCC.Flows.DeleteEntry(flowSlug, entryId);
    

    Response Example

    204 No Content

    Was this helpful?

    Previous
    Update an Entry