DELETE
/
v4
/
threads
/
{thread_id}
/
messages
/
{application_interaction_id}
/
feedback
import SGPClient from 'sgp';

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

async function main() {
  const feedback = await client.chatThreads.messages.feedback.delete(
    'thread_id',
    'application_interaction_id',
  );

  console.log(feedback);
}

main();
"<any>"

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string | null

Path Parameters

thread_id
string
required
application_interaction_id
string
required

Response

200
application/json
Successful Response

The response is of type any.