Skip to main content
POST
/
v1
/
credentials
Create integration
curl --request POST \
  --url https://api.oneinbox.ai/v1/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "OpenAI Production",
  "provider": "openai",
  "api_key": "sk-..."
}
'
{
  "id": "<string>",
  "name": "<string>",
  "provider": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.oneinbox.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from the OneInbox dashboard (API Keys → Create)

Body

application/json
name
string
required
provider
enum<string>
required
Available options:
openai,
gemini,
elevenlabs,
cartesia,
deepgram,
twilio
api_key
string
required

Provider API key or auth token. For telephony carriers, use the credential from your carrier console (e.g. Twilio Auth Token, Tenyx API key).

Response

201 - application/json

Created

id
string
name
string
provider
string
created_at
string<date-time>