POST
/
end-users
/
{id}
/
passthrough
/
{integrationSlug}
import Conductor from 'conductor-node';

const client = new Conductor({
  apiKey: process.env['CONDUCTOR_SECRET_KEY'], // This is the default and can be omitted
});

async function main() {
  const response = await client.endUsers.passthrough('end_usr_1234567abcdefg', 'quickbooks_desktop', {
    foo: 'bar',
  });

  console.log(response);
}

main();
{}

Authorizations

Authorization
string
header
required

Your Conductor secret key using Bearer auth (e.g., "Authorization: Bearer {{YOUR_SECRET_KEY}}").

Path Parameters

id
string
required

The ID of the end-user who owns the integration connection.

integrationSlug
enum<string>
required

The integration identifier for the end-user's connection.

Available options:
quickbooks_desktop

Body

application/json ยท object

The request body to send to the integration connection.

Response

200 - application/json
Returns the response from the integration connection.

The response from the integration connection.