curl --request PUT \
--url https://api.example.com/insight/update/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"change_names": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>"
}
],
"for_archive": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"for_delete": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"delete_link": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"assign_link": [
{
"record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"change_status": [
{
"record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>"
}
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}curl --request PUT \
--url https://api.example.com/insight/update/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"change_names": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>"
}
],
"for_archive": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"for_delete": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"delete_link": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"assign_link": [
{
"record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"change_status": [
{
"record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>"
}
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?