cURL
curl --request POST \
--url http://127.0.0.1:3333/v3/credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'import requests
url = "http://127.0.0.1:3333/v3/credentials"
payload = { "name": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>'})
};
fetch('http://127.0.0.1:3333/v3/credentials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"credentials": {
"id": "<string>",
"type": "smtp",
"name": "<string>"
}
}Credentials
Create Credentials
Create Credentials with the Sendbot API v3.
POST
/
v3
/
credentials
cURL
curl --request POST \
--url http://127.0.0.1:3333/v3/credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'import requests
url = "http://127.0.0.1:3333/v3/credentials"
payload = { "name": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>'})
};
fetch('http://127.0.0.1:3333/v3/credentials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"credentials": {
"id": "<string>",
"type": "smtp",
"name": "<string>"
}
}Authorizations
bearerAuthapiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Available options:
smtp, google sheets, google, gmail, stripe, mercadopago, openpix, whatsApp, instagram, tiktok, facebook, telegram, openai, anthropic, deepseek, google-gemini, mistral, together-ai, perplexity, groq, open-router, xai, supabase, nocodb, webhook, blink, chat-node, dify-ai, elevenlabs, posthog, segment, zendesk, mcp-server, shopify Available options:
workspace, user Response
200 - application/json
Default Response
Show child attributes
Show child attributes