curl --request POST \
--url https://api.jelou.ai/v1/widget/create \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"bot": {
"id": "<string>"
},
"widget": {
"properties": {},
"theme": {}
},
"credentials": {
"blackList": [
"<string>"
],
"whiteList": [
"<string>"
]
}
}
'{
"message": [
"<string>"
],
"statusMessage": "<string>",
"status": 123,
"data": {
"Bot": {},
"Widget": {},
"ApiKey": {}
}
}Crea widgets en Jelou y personaliza su configuración visual y de comportamiento.
curl --request POST \
--url https://api.jelou.ai/v1/widget/create \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"bot": {
"id": "<string>"
},
"widget": {
"properties": {},
"theme": {}
},
"credentials": {
"blackList": [
"<string>"
],
"whiteList": [
"<string>"
]
}
}
'{
"message": [
"<string>"
],
"statusMessage": "<string>",
"status": 123,
"data": {
"Bot": {},
"Widget": {},
"ApiKey": {}
}
}Basic authentication using Base64 encoded clientId:clientSecret
Was this page helpful?