stormy-gold
stormy-gold2y ago

hey guys, can anyone help me with this request to create a KB tag?

😎
No description
No description
2 Replies
Tico | Voiceflow Assistant
To create a KB (Knowledge Base) tag, you'll need to use a JSON request format. Here's a brief overview of how you can do it: - First, ensure you have your Dialog Manager API Key. This is required for all requests to Knowledge Base APIs. You can obtain this key from the Integration tab on the project you've uploaded data sources to. - For creating a new tag, your JSON request should look like this:
{
"data": {
"label": "technical"
}
}
{
"data": {
"label": "technical"
}
}
- If you're specifying a tagID for an existing tag, your JSON structure would include the tagID like so:
{
"data": {
"label": "technical",
"tagID": "651ebb247770e893e3768507"
}
}
{
"data": {
"label": "technical",
"tagID": "651ebb247770e893e3768507"
}
}
This process allows you to either create a new tag or specify an existing one by including its tagID. Remember, successful responses to these requests might vary, so ensure to check for any response codes or messages to confirm the action was completed as expected. For more detailed information, you can visit the Voiceflow developer documentation.
stormy-gold
stormy-goldOP2y ago
nvm, tico was actually useful this time. Thanks @Tico | Voiceflow Assistant

Did you find this page helpful?