Authorizations
Bearer token via Authorization header
Response
200 - application/json
Successful Response
import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const response = await client.hooks.getSampleData();
console.log(response);[
{
"createdAt": "<string>",
"events": [
"<string>"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"state": "<string>",
"updatedAt": "<string>",
"url": "<string>"
}
]Get sample hook data for Zapier Perform List (testing/field mapping).
import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const response = await client.hooks.getSampleData();
console.log(response);[
{
"createdAt": "<string>",
"events": [
"<string>"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"state": "<string>",
"updatedAt": "<string>",
"url": "<string>"
}
]Bearer token via Authorization header
Successful Response
Was this page helpful?