PUT
/
v1
/
applications
/
{application_id}
/
graphs
curl --location --request PUT https://api.writer.com/v1/applications/{application_id}/graphs \
 --header "Authorization: Bearer <token>" \
 --header "Content-Type: application/json" \
--data-raw '{"graph_ids":["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e","182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e","182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"]}'
{
  "graph_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your Writer API key.

Path Parameters

application_id
string
required

The ID of the no-code chat app to update.

Body

application/json
graph_ids
string[]
required

A list of Knowledge Graph IDs to associate with the application. Note that this will replace the existing list of Knowledge Graphs associated with the application, not add to it.

The unique identifier for the Knowledge Graph.

Response

200 - application/json
Successful
graph_ids
string[]
required

A list of Knowledge Graphs associated with the application.

The unique identifier for the Knowledge Graph.

Was this page helpful?