Release Notes
- What's new
- Known issues
- Troubleshooting
- License reference
Get Started
Environments
Large Language Models (LLMs)
Webchats
Tutorials
API's reference
- watsonx Orchestrate Developer Edition APIs
Legal notices
Welcome Content
Create Or Update Welcome Content
PUT
/
welcome-content
Copy
Ask AI
curl --request PUT \
--url http://localhost/api/v1/welcome-content \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"welcome_message": "<string>",
"description": "<string>"
}'
Copy
Ask AI
{
"tenant_id": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"updated_by": "<string>",
"orchestrate_id": "<string>",
"welcome_message": "<string>",
"description": "<string>",
"isDefaultMessage": false
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request PUT \
--url http://localhost/api/v1/welcome-content \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"welcome_message": "<string>",
"description": "<string>"
}'
Copy
Ask AI
{
"tenant_id": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"updated_by": "<string>",
"orchestrate_id": "<string>",
"welcome_message": "<string>",
"description": "<string>",
"isDefaultMessage": false
}
Assistant
Responses are generated using AI and may contain mistakes.