put()

Description

PUT data to an integration endpoint.

By default the Content-Type is set to application/json, but you can override this value by passing your own headers in the integration() method.

Request

Parameters

FieldRequiredData TypeDescription

path

string

body

Object

Data to be sent to the integration

Examples

PUT without custom headers

const results = await client.integration("stripe").put("/customers", JSON.stringify({ email: "customer@email.com" }));

PUT with custom headers

const results = await client.integration("stripe", { "Content-Type": "application/x-www-form-urlencoded" }).put("/customers", JSON.stringify({ email: "customer@email.com" }));

Response

Response schema is defined by the integration you are activating. Deskree passes the entire object received by the integration.

Last updated

Copyright © 2023 Deskree Technologies Inc.