Skip to main content
GET
/
v2
/
organizations
/
{orgId}
/
delegation-credentials
/
{credentialId}
Get a delegation credential of your organization
curl --request GET \
  --url https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}
import requests

url = "https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.cal.com/v2/organizations/{orgId}/delegation-credentials/{credentialId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "status": "success",
  "data": {
    "id": "clsx1234567890",
    "enabled": true,
    "domain": "example.com",
    "organizationId": 123,
    "workspacePlatform": {
      "name": "Google",
      "slug": "google"
    },
    "createdAt": "2024-04-01T00:00:00.000Z",
    "updatedAt": "2024-04-01T00:00:00.000Z",
    "serviceAccountClientId": "1234567890"
  }
}
{
  "status": "error",
  "timestamp": "2024-04-01T00:00:00.000Z",
  "path": "/v2/organizations/123/delegation-credentials/clsx1234567890",
  "error": {
    "code": "UnauthorizedException",
    "message": "<string>"
  }
}
{
  "status": "error",
  "timestamp": "2024-04-01T00:00:00.000Z",
  "path": "/v2/organizations/123/delegation-credentials/clsx1234567890",
  "error": {
    "code": "ForbiddenException",
    "message": "<string>"
  }
}
{
  "status": "error",
  "timestamp": "2024-04-01T00:00:00.000Z",
  "path": "/v2/organizations/123/delegation-credentials/clsx1234567890",
  "error": {
    "code": "NotFoundException",
    "message": "<string>"
  }
}

Headers

Authorization
string

For non-platform customers - value must be Bearer <token> where <token> is api key prefixed with cal_

x-cal-secret-key
string

For platform customers - OAuth client secret key

x-cal-client-id
string

For platform customers - OAuth client ID

Path Parameters

orgId
number
required

The unique identifier of the organization the delegation credential belongs to

Example:

123

credentialId
string
required

The unique identifier of the delegation credential to return

Example:

"clsx1234567890"

Response

status
enum<string>
required

The status of the request, either success or error

Available options:
success,
error
Example:

"success"

data
object
required

The delegation credential matching the requested id