POST
/
v4
/
applications
/
{application_variant_id}
/
threads
/
{thread_id}
/
process
import SGPClient from 'sgp';

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

const response = await client.applicationThreads.process('application_variant_id', 'thread_id', {
  inputs: { foo: 'bar' },
});

console.log(response);
"<any>"

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string

Path Parameters

application_variant_id
string
required
thread_id
string
required

Body

application/json

Response

200
application/json

Successful Response

The response is of type any.