Update an OAuth client
curl --request PUT \
--url https://api.hq.zone/v1/oauth/register/{client_id} \
--header 'Content-Type: application/json' \
--data '
{
"client_name": "<string>",
"grant_types": [
"<string>"
],
"redirect_uris": [
"<string>"
],
"response_types": [
"<string>"
],
"scope": "<string>",
"token_endpoint_auth_method": "<string>"
}
'import requests
url = "https://api.hq.zone/v1/oauth/register/{client_id}"
payload = {
"client_name": "<string>",
"grant_types": ["<string>"],
"redirect_uris": ["<string>"],
"response_types": ["<string>"],
"scope": "<string>",
"token_endpoint_auth_method": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
client_name: '<string>',
grant_types: ['<string>'],
redirect_uris: ['<string>'],
response_types: ['<string>'],
scope: '<string>',
token_endpoint_auth_method: '<string>'
})
};
fetch('https://api.hq.zone/v1/oauth/register/{client_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.hq.zone/v1/oauth/register/{client_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'client_name' => '<string>',
'grant_types' => [
'<string>'
],
'redirect_uris' => [
'<string>'
],
'response_types' => [
'<string>'
],
'scope' => '<string>',
'token_endpoint_auth_method' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hq.zone/v1/oauth/register/{client_id}"
payload := strings.NewReader("{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.hq.zone/v1/oauth/register/{client_id}")
.header("Content-Type", "application/json")
.body("{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hq.zone/v1/oauth/register/{client_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"client_id": "<string>",
"client_id_issued_at": 123,
"client_name": "<string>",
"grant_types": [
"<string>"
],
"redirect_uris": [
"<string>"
],
"registration_client_uri": "<string>",
"response_types": [
"<string>"
],
"scope": "<string>",
"token_endpoint_auth_method": "<string>",
"client_secret": "<string>",
"client_secret_expires_at": 123,
"registration_access_token": "<string>"
}Authentication
Update an OAuth client
RFC 7592 update of a dynamically registered OAuth client identified by client_id in the path, authenticated with the client’s registration_access_token as a Bearer token. Re-validates and replaces the mutable metadata (name, redirect URIs, and requestable scopes); the client type and its secret lifecycle are fixed at registration and cannot be changed. Returns the updated client metadata.
PUT
/
v1
/
oauth
/
register
/
{client_id}
Update an OAuth client
curl --request PUT \
--url https://api.hq.zone/v1/oauth/register/{client_id} \
--header 'Content-Type: application/json' \
--data '
{
"client_name": "<string>",
"grant_types": [
"<string>"
],
"redirect_uris": [
"<string>"
],
"response_types": [
"<string>"
],
"scope": "<string>",
"token_endpoint_auth_method": "<string>"
}
'import requests
url = "https://api.hq.zone/v1/oauth/register/{client_id}"
payload = {
"client_name": "<string>",
"grant_types": ["<string>"],
"redirect_uris": ["<string>"],
"response_types": ["<string>"],
"scope": "<string>",
"token_endpoint_auth_method": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
client_name: '<string>',
grant_types: ['<string>'],
redirect_uris: ['<string>'],
response_types: ['<string>'],
scope: '<string>',
token_endpoint_auth_method: '<string>'
})
};
fetch('https://api.hq.zone/v1/oauth/register/{client_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.hq.zone/v1/oauth/register/{client_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'client_name' => '<string>',
'grant_types' => [
'<string>'
],
'redirect_uris' => [
'<string>'
],
'response_types' => [
'<string>'
],
'scope' => '<string>',
'token_endpoint_auth_method' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hq.zone/v1/oauth/register/{client_id}"
payload := strings.NewReader("{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.hq.zone/v1/oauth/register/{client_id}")
.header("Content-Type", "application/json")
.body("{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hq.zone/v1/oauth/register/{client_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"client_name\": \"<string>\",\n \"grant_types\": [\n \"<string>\"\n ],\n \"redirect_uris\": [\n \"<string>\"\n ],\n \"response_types\": [\n \"<string>\"\n ],\n \"scope\": \"<string>\",\n \"token_endpoint_auth_method\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"client_id": "<string>",
"client_id_issued_at": 123,
"client_name": "<string>",
"grant_types": [
"<string>"
],
"redirect_uris": [
"<string>"
],
"registration_client_uri": "<string>",
"response_types": [
"<string>"
],
"scope": "<string>",
"token_endpoint_auth_method": "<string>",
"client_secret": "<string>",
"client_secret_expires_at": 123,
"registration_access_token": "<string>"
}Path Parameters
Client id
Body
application/json
Response
Updated client metadata (RFC 7592)
⌘I