Skip to contentSkip to navigationSkip to topbar
Page tools
Useful for sharing or LLM
Accelerate development with AI

On this page
Looking for more inspiration?Visit the

Sink Validate resource


There is no longer a need for validating a Sink. The status of Sinks is active by default.


Validate Properties

validate-properties page anchor
Property nameTypeRequiredPIIDescriptionChild properties
resultstring

Optional

Not PII

Feedback indicating whether the given Sink was validated.


Create a SinkValidate resource

create-a-sinkvalidate-resource page anchor

POST https://events.twilio.com/v1/Sinks/{Sid}/Validate

A request to create a new Sink Validation Resource always returns a result property with a value of valid (to avoid disrupting existing customer workflows).

Path parameters

path-parameters page anchor
Property nameTypeRequiredPIIDescription
sidSID<DG>
required

A 34 character string that uniquely identifies the Sink being validated.

Pattern: ^DG[0-9a-fA-F]{32}$Min length: 34Max length: 34
Encoding type:application/x-www-form-urlencoded
SchemaExample
Property nameTypeRequiredPIIDescriptionChild properties
testIdstring
required

A 34 character string that uniquely identifies the test event for a Sink being validated.

Post Sink ValidateLink to code sample: Post Sink Validate
1
// Download the helper library from https://www.twilio.com/docs/node/install
2
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
3
4
// Find your Account SID and Auth Token at twilio.com/console
5
// and set the environment variables. See http://twil.io/secure
6
const accountSid = process.env.TWILIO_ACCOUNT_SID;
7
const authToken = process.env.TWILIO_AUTH_TOKEN;
8
const client = twilio(accountSid, authToken);
9
10
async function createSinkValidate() {
11
const sinkValidate = await client.events.v1
12
.sinks("DGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
13
.sinkValidate.create({ testId: "95001c1e-5b8e-45f5-830d-f9cbf1d16420" });
14
15
console.log(sinkValidate.result);
16
}
17
18
createSinkValidate();

Response

Note about this response
1
{
2
"result": "valid"
3
}