curl --request GET \
--url https://api.assembly.com/v1/clients/{id} \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.assembly.com/v1/clients/{id}"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.assembly.com/v1/clients/{id}', 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.assembly.com/v1/clients/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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.assembly.com/v1/clients/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
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.assembly.com/v1/clients/{id}")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.assembly.com/v1/clients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"avatarImageUrl": "https://portal.example.com/avatars/alex.png",
"companyId": "550e8400-e29b-41d4-a716-446655440000",
"companyIds": [
"<string>"
],
"createdAt": "2024-01-15T09:30:00Z",
"creationMethod": "client",
"customFields": {},
"deleted": true,
"email": "alex.morgan@example.com",
"fallbackColor": "#4F46E5",
"familyName": "Morgan",
"firstLoginDate": "2024-01-15T09:30:00Z",
"givenName": "Alex",
"id": "550e8400-e29b-41d4-a716-446655440000",
"inviteUrl": "https://portal.example.com/invite/abc123",
"invitedBy": "550e8400-e29b-41d4-a716-446655440001",
"lastLoginDate": "2024-02-20T14:05:00Z",
"object": "client",
"status": "active",
"updatedAt": "2024-02-20T14:05:00Z"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}Retrieve a client
Returns a single client by ID.
curl --request GET \
--url https://api.assembly.com/v1/clients/{id} \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.assembly.com/v1/clients/{id}"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.assembly.com/v1/clients/{id}', 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.assembly.com/v1/clients/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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.assembly.com/v1/clients/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
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.assembly.com/v1/clients/{id}")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.assembly.com/v1/clients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"avatarImageUrl": "https://portal.example.com/avatars/alex.png",
"companyId": "550e8400-e29b-41d4-a716-446655440000",
"companyIds": [
"<string>"
],
"createdAt": "2024-01-15T09:30:00Z",
"creationMethod": "client",
"customFields": {},
"deleted": true,
"email": "alex.morgan@example.com",
"fallbackColor": "#4F46E5",
"familyName": "Morgan",
"firstLoginDate": "2024-01-15T09:30:00Z",
"givenName": "Alex",
"id": "550e8400-e29b-41d4-a716-446655440000",
"inviteUrl": "https://portal.example.com/invite/abc123",
"invitedBy": "550e8400-e29b-41d4-a716-446655440001",
"lastLoginDate": "2024-02-20T14:05:00Z",
"object": "client",
"status": "active",
"updatedAt": "2024-02-20T14:05:00Z"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}{
"code": "<string>",
"data": "<unknown>",
"message": "<string>"
}Authorizations
Path Parameters
Client ID
Response
OK
AvatarImageUrl is the URL of the client's avatar image. Read-only.
"https://portal.example.com/avatars/alex.png"
CompanyID is the ID of the company the client belongs to. In multi-company portals see companyIds.
"550e8400-e29b-41d4-a716-446655440000"
CompanyIDs lists every company the client belongs to in multi-company portals.
Created is the RFC 3339 timestamp at which the object was created.
"2024-01-15T09:30:00Z"
CreationMethod records how the client was created. Read-only.
client, directSignUp, import, internalUser "client"
CustomFields holds custom field values for the client, keyed by custom field key.
Show child attributes
Show child attributes
Deleted is true when the object has been deleted; present only on delete responses.
true
Email is the client's email address, used as the unique login identifier within the portal.
"alex.morgan@example.com"
FallbackColor is the hex color (e.g. "#4F46E5") used as the avatar background when no avatar image is set. The native pattern documents intent; the constraint is re-applied to the spec by the enrich-openapi post-processing step.
^#[0-9a-fA-F]{6}$"#4F46E5"
FamilyName is the client's last (family) name.
"Morgan"
FirstLogin is the timestamp of the client's first login. Read-only.
"2024-01-15T09:30:00Z"
GivenName is the client's first (given) name.
"Alex"
ID is the unique identifier of the object.
"550e8400-e29b-41d4-a716-446655440000"
InviteUrl is the one-time invite link, returned only when an invite has just been sent. Read-only.
"https://portal.example.com/invite/abc123"
InvitedBy is the ID of the internal user who invited the client, when applicable. Read-only.
"550e8400-e29b-41d4-a716-446655440001"
LastLogin is the timestamp of the client's most recent login. Read-only.
"2024-02-20T14:05:00Z"
Object is the type of the object (e.g. "client", "company").
client, internalUser, company, customField, customFieldOption, file, fileChannel, folder, messageChannel, message, notification Status is the client's lifecycle status. Server-managed (read-only).
unknown, deleted, active, notInvited, invited "active"
Updated is the RFC 3339 timestamp at which the object was last updated.
"2024-02-20T14:05:00Z"