To ensure the security and privacy of your data, our API requires authentication for every request. Authentication is performed in two possible ways, one by including an API key in the header of your request and the other requires 3 headers and it will be used if you are trying to integrate a new APP to Darwin.
Your unique API key is provided directly by the Darwin team. This key acts as a secure access token for your account and should be kept confidential. Do not share your API key publicly or with unauthorized individuals.
If you have not received your API key or have lost it, please contact our support team at it@getdarwin.ai for assistance.
To authenticate your API requests, include your API key in the header of each request using the X-API-KEY
field. Here is an example of how to include your API key in a request using cURL:
curl -X GET 'https://api.getdarwin.ai/endpoint' \
-H 'X-API-KEY: YourApiKeyHere'
Replace YourApiKeyHere
with your actual API key provided by the Darwin team.
If you are trying to integrate a new APP to Darwin, you will need to obtain an APP Key and APP Secret. These keys are provided directly by the Darwin team. These keys act as a secure access token for your APP and should be kept confidential. Do not share your APP Key and APP Secret publicly or with unauthorized individuals.
If you have not received your APP Key and APP Secret or have lost them, please contact our support team at it@getdarwin.ai for assistance.
You will need to send three headers in your request to authenticate your APP requests. These headers are X-APP-KEY
, X-SIGNATURE
, and X-AGENT-ID
.
To generate the X-SIGNATURE
you will need to use the APP Key, APP Secret, and the payload of the request. Here is an example of how to do that:
const crypto = require('crypto');
const payload = JSON.stringify(request.body);
const signature = crypto.createHmac('sha256', 'your_app_secret')
.update('your_app_key' + payload)
.digest('hex');
Webhooks are a way for web applications to communicate with each other in real-time. They allow you to send data from one application to another as soon as an event occurs. This is useful for integrating different systems and automating processes. In the Darwin API, webhooks are used to send events to external systems when specific actions occur in the Darwin platform. For example, you can set up a webhook to receive a notification whenever a new session is opened or closed. This allows you to take immediate action based on these events. You can create, update, and remove webhooks using the Darwin API. This section provides endpoints for managing webhooks. When you create a webhook, you specify the URL of the external system that will receive the events and the types of events you want to be notified about. You can use wildcards to match multiple events. For example, you can set up a webhook to receive notifications for all session events or all function call events. Here are all events that you can subscribe to:
<functionName>
with the name of the function you want to be notified about.All webhooks are authenticated using a secret key that is generated when the webhook is created. This secret key is used to sign the payload of the event, ensuring that the event is sent by Darwin and not tampered with during transit. When you create a webhook, you will receive the secret key, which you should keep secure and use to verify the authenticity of the events you receive. This secret will be used to generate the X-SIGNATURE
header when you receive an event from Darwin. You can verify the signature using the same method as generating it, here is an example of how to do that:
const crypto = require('crypto');
const payload = JSON.stringify(request.body);
const expectedSignature = crypto.createHmac('sha256', 'your_app_secret')
.update(payload)
.digest('hex');
if (receivedSignature !== expectedSignature) {
throw new Error('Invalid signature');
}
All webhooks have the following properties:
The Darwin API provides an endpoint for configuring new webhooks, which are essential for creating real-time, event-driven integrations between the Darwin platform and external systems. Webhooks allow external services to receive notifications from Darwin immediately after specific events occur, facilitating automated processes and seamless data flows.
Request body
webhookUrl required | string The URL of the webhook to send events to. |
types required | Array of strings Items Enum: "session.opened" "session.closed" "session.forwarded" "session.analyzed" "session.*" "function.call.<functionName>" "function.call.*" "function.*" The types of events to send to the webhook. You can use wildcards to match multiple events. |
{- "types": [
- "session.opened",
- "session.closed",
- "session.forwarded",
- "session.analyzed",
- "session.*",
- "function.call.*"
]
}
{- "secret": "ouisndnv8329r27dsvs_2389svkjs",
- "webhookId": 1
}
The "Get all webhooks" API endpoint is designed to provide users with the ability to retrieve a comprehensive list of all the webhooks they have set up. This is particularly useful for managing and auditing webhooks, allowing users to see which events they are subscribed to.
[- {
- "types": [
- "session.opened",
- "session.closed",
- "function.call.*"
]
},
]
The "Update an existing webhook" operation in the Darwin API allows users to modify the settings or parameters of a webhook they have previously configured.
id required | string (id) ID of the webhook to update |
Request body
webhookUrl required | string The URL of the webhook to send events to. |
types required | Array of strings Items Enum: "session.opened" "session.closed" "session.forwarded" "session.analyzed" "session.*" "function.call.<functionName>" "function.call.*" "function.*" The types of events to send to the webhook. You can use wildcards to match multiple events. |
{- "types": [
- "session.opened",
- "session.closed",
- "session.forwarded",
- "session.analyzed",
- "session.*",
- "function.call.*"
]
}
{ }
Remove an existing webhook refers to the process of deleting a previously configured webhook, allowing users to clean up unnecessary or outdated webhooks and maintain a streamlined integration.
id required | string (id) ID of the webhook to remove |
{ }
As for function calls and function returns, they are customized abilities and skills that can be added to Darwin AI according to the client's needs, for example, integration to the user's calendar to schedule appointments.
id required | string (id) ID of the function call to update |
Request body
returnData | object Data to be returned from the function call. This will be used to update the response of a function call so that the agent can use the data to generate a response. |
{- "returnData": {
- "weather": "sunny",
- "temperature": 25
}
}
{- "functionCallId": "1234"
}
The Darwin API allows for sending outbound messages through a specific endpoint, when there is an action that triggers it. For this, you have to provide specific information, such as the channel, channel type options, and the templateId will be provided by Darwin AI. Responses to this request can include a 200
status code with the body containing the channelId
, indicating successful message delivery, or a 400
status code indicating an error.
id required | string (id) ID of the thread to send the message to. This is threadId is a unique identifier for the destination of the message. Like a phone number for WhatsApp or a user ID for Facebook Messenger. |
Request body
channel required | string The ID of the channel to use for sending the message. |
templateId required | string Required for templated channels like wa-gupshup. The ID of the template to use for sending the message. |
templateParams required | Array of strings Required for templated channels like wa-gupshup. The parameters to use for the template. |
message required | string Required for non-templated channels. The message to send. |
initialState | string The initial state to set for the conversation. |
object The source of the message. Include all pertinent utm_parameters or other tracking information. |
{- "channel": "1234",
- "message": "Hello, how can I help you?",
- "initialState": "greeting",
- "source": {
- "utm_source": "website",
- "utm_medium": "chat",
- "utm_campaign": "summer_sale",
- "utm_term": "shoes",
- "utm_content": "cta",
- "intent": "outbound",
- "interest": "SKU-1234"
}
}
{- "channelId": "1234"
}
Get all channels available to use for sending messages. This endpoint will return a list of all channels available to use for sending messages.
[- {
- "id": "1",
- "name": "WhatsApp Unofficial",
- "capabilities": {
- "templated": false,
- "outboundMessages": true
}
}, - {
- "id": "2",
- "name": "Instagram",
- "capabilities": {
- "templated": false,
- "outboundMessages": false
}
}, - {
- "id": "3",
- "name": "WhatsApp Gupshup",
- "capabilities": {
- "templated": true,
- "outboundMessages": true
}
}
]
Get templates available for a provided channel to use for sending messages. This endpoint will return a list of all templates available for a provided channel.
id required | string (id) ID of the channel to get templates for |
[- {
- "id": "1234",
- "name": "Appointment Reminder",
- "messageBody": "Hello {0}, your appointment is scheduled for {1}.",
- "numberOfPlaceholders": 2
}, - {
- "id": "5678",
- "name": "Payment Confirmation",
- "messageBody": "Hello {0}, your payment of {1} has been confirmed.",
- "numberOfPlaceholders": 2
}
]
Get all available smart fields for agent. This endpoint will return a list of all available smart fields for the agent.
[- {
- "name": "name",
- "description": "The name of the user",
- "type": "string"
}, - {
- "name": "email",
- "description": "The email of the user",
- "type": "string"
}, - {
- "name": "phone",
- "description": "The phone number of the user",
- "type": "string"
}
]
Get all available source parameters for agent. This endpoint will return a list of all available source parameters for the agent.
[- "utm_term",
- "utm_content",
- "interest"
]
Get metadata of the app regarding a provided conversation. This endpoint will return a list of all metadata of the app regarding a provided conversation.
id required | string (id) ID of the agent_app to get metadata for. This is the ID of the particular installation of the app for a specific agent. |
conversation_id | string (conversation_id) Conversation ID |
[- {
- "conversation_id": "1234-56789012",
- "metadata": {
- "name": "John Doe",
- "age": 30
}
}, - {
- "conversation_id": "5678-12345678",
- "metadata": {
- "name": "Jane Doe",
- "age": 25
}
}
]
Save metadata of the app regarding a provided conversation. This endpoint will save metadata of the app regarding a provided conversation.
id required | string (id) ID of the agent_app to save metadata for. This is the ID of the particular installation of the app for a specific agent. |
Request body
metadata required | object Metadata to save regarding the provided conversation. This can be any data that the app wants to store for the conversation. |
conversation_id required | string The ID of the conversation to save the metadata for. |
{- "metadata": {
- "name": "John Doe",
- "age": 30
}, - "conversation_id": "1234-56789012"
}
{- "appContactDataId": "1234"
}
The Darwin API utilizes Semantic Versioning in the format major.minor.patch. The current major version is incorporated into the API request path as /v1/. Non-breaking minor and patch updates to the API are released regularly. These may include new endpoints, data points, and API plan features which are always introduced in a non-breaking manner. This means you can expect new properties to become available in our existing /v1/ endpoints however any breaking change will be introduced under a new major version of the API with legacy versions supported indefinitely unless otherwise stated.
Retrieves the last N webhook events for a given event type and agent ID.
[- {
- "eventType": "string",
- "agentId": "string",
- "agentName": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "data": { }
}
]