Code Samples #
Copy
curl --request GET \
--url 'https://api.taskflow.example.com/v2/webhooks' \
--header 'Authorization: Bearer YOUR_TOKEN'
const response = await fetch('https://api.taskflow.example.com/v2/webhooks', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
}
});
const data = await response.json();
console.log(data);
import requests
headers = {
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get("https://api.taskflow.example.com/v2/webhooks", headers=headers)
print(response.json())
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://api.taskflow.example.com/v2/webhooks',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer YOUR_TOKEN'
],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
using System.Net.Http;
var client = new HttpClient();
var request = new HttpRequestMessage(new HttpMethod("GET"), "https://api.taskflow.example.com/v2/webhooks");
request.Headers.Add("Authorization", "Bearer YOUR_TOKEN");
var response = await client.SendAsync(request);
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
import java.net.URI;
import java.net.http.*;
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.taskflow.example.com/v2/webhooks"))
.header("Authorization", "Bearer YOUR_TOKEN")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
Response #
Copy
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://example.com",
"events": [
"string"
]
}
]
Responses #
200 — Subscriptions #
| Field | Type | Required | Description |
|---|---|---|---|
[].id | string (uuid) | Optional | |
[].url | string (uri) | Optional | |
[].events | array of string | Optional |
Example 200 response
Copy
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://example.com",
"events": [
"string"
]
}
]