Update a private model
const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model_reference: '<string>',
name: '<string>',
description: '<string>',
base_url: '<string>',
upstream_model_id: '<string>',
credential: '<string>',
supports_responses: true,
enabled: true,
context_length: 2,
max_output_tokens: 2,
host_provider_id: '<string>',
custom_provider_name: '<string>',
custom_provider_url: '<string>'
})
};
fetch('https://api.phaseo.app/v1/private-models/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.phaseo.app/v1/private-models/{id}"
payload = {
"model_reference": "<string>",
"name": "<string>",
"description": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"credential": "<string>",
"supports_responses": True,
"enabled": True,
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)curl --request PATCH \
--url https://api.phaseo.app/v1/private-models/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model_reference": "<string>",
"name": "<string>",
"description": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"credential": "<string>",
"supports_responses": true,
"enabled": true,
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>"
}
'package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.phaseo.app/v1/private-models/{id}"
payload := strings.NewReader("{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://api.phaseo.app/v1/private-models/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.phaseo.app/v1/private-models/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'model_reference' => '<string>',
'name' => '<string>',
'description' => '<string>',
'base_url' => '<string>',
'upstream_model_id' => '<string>',
'credential' => '<string>',
'supports_responses' => true,
'enabled' => true,
'context_length' => 2,
'max_output_tokens' => 2,
'host_provider_id' => '<string>',
'custom_provider_name' => '<string>',
'custom_provider_url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.phaseo.app/v1/private-models/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_id": "<string>",
"name": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"supports_responses": true,
"enabled": true,
"local_slug": "<string>",
"catalog_model_id": "<string>",
"description": "<string>",
"input_modalities": [
"<string>"
],
"output_modalities": [
"<string>"
],
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>",
"routing_policy": "preferred",
"credential_prefix": "<string>",
"credential_suffix": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": "error_type",
"ok": false,
"message": "Human-readable error message",
"description": "Additional error details.",
"generation_id": "G-abc123",
"status_code": 502,
"error_type": "system",
"error_origin": "upstream",
"reason": "all_candidates_failed",
"attempt_count": 2,
"failed_providers": [
"google-ai-studio",
"openai"
],
"failed_statuses": [
403,
429
],
"upstream_error": {
"code": "PERMISSION_DENIED",
"message": "The caller does not have permission.",
"description": "<string>",
"param": "<string>"
},
"failure_sample": [
{
"provider": "<string>",
"type": "<string>",
"status": 123,
"upstream_error_code": "<string>",
"upstream_error_message": "<string>",
"upstream_error_description": "<string>",
"upstream_error_param": "<string>",
"upstream_payload_preview": "<string>",
"retryable": true
}
],
"provider_failure_diagnostics": {
"category": "credentials_not_configured",
"hint": "<string>",
"provider": "<string>"
},
"routing_diagnostics": {
"filterStages": [
{
"stage": "<string>",
"beforeCount": 123,
"afterCount": 123,
"droppedProviders": [
{
"providerId": "<string>",
"reason": "<string>"
}
]
}
]
},
"provider_candidate_diagnostics": {
"totalProviders": 123,
"supportsEndpointCount": 123,
"candidateCount": 123,
"droppedUnsupportedEndpoint": [
"<string>"
],
"droppedMissingAdapter": [
{
"providerId": "<string>",
"endpoint": "<string>"
}
]
},
"provider_enablement": {
"capability": "<string>",
"providersBefore": [
"<string>"
],
"providersAfter": [
"<string>"
],
"dropped": [
{
"providerId": "<string>",
"reason": "<string>"
}
]
},
"missing_pricing_providers": [
"<string>"
],
"provider_payment_required_provider": "openai",
"provider_payment_required_support_notice": "Our upstream provider billing appears to be unavailable. If this persists, contact support.",
"details": [
{}
]
}Private Models
Update a private model
Update endpoint settings or rotate the write-only credential.
PATCH
/
private-models
/
{id}
Update a private model
const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model_reference: '<string>',
name: '<string>',
description: '<string>',
base_url: '<string>',
upstream_model_id: '<string>',
credential: '<string>',
supports_responses: true,
enabled: true,
context_length: 2,
max_output_tokens: 2,
host_provider_id: '<string>',
custom_provider_name: '<string>',
custom_provider_url: '<string>'
})
};
fetch('https://api.phaseo.app/v1/private-models/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.phaseo.app/v1/private-models/{id}"
payload = {
"model_reference": "<string>",
"name": "<string>",
"description": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"credential": "<string>",
"supports_responses": True,
"enabled": True,
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)curl --request PATCH \
--url https://api.phaseo.app/v1/private-models/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model_reference": "<string>",
"name": "<string>",
"description": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"credential": "<string>",
"supports_responses": true,
"enabled": true,
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>"
}
'package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.phaseo.app/v1/private-models/{id}"
payload := strings.NewReader("{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://api.phaseo.app/v1/private-models/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.phaseo.app/v1/private-models/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'model_reference' => '<string>',
'name' => '<string>',
'description' => '<string>',
'base_url' => '<string>',
'upstream_model_id' => '<string>',
'credential' => '<string>',
'supports_responses' => true,
'enabled' => true,
'context_length' => 2,
'max_output_tokens' => 2,
'host_provider_id' => '<string>',
'custom_provider_name' => '<string>',
'custom_provider_url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.phaseo.app/v1/private-models/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model_reference\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"base_url\": \"<string>\",\n \"upstream_model_id\": \"<string>\",\n \"credential\": \"<string>\",\n \"supports_responses\": true,\n \"enabled\": true,\n \"context_length\": 2,\n \"max_output_tokens\": 2,\n \"host_provider_id\": \"<string>\",\n \"custom_provider_name\": \"<string>\",\n \"custom_provider_url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_id": "<string>",
"name": "<string>",
"base_url": "<string>",
"upstream_model_id": "<string>",
"supports_responses": true,
"enabled": true,
"local_slug": "<string>",
"catalog_model_id": "<string>",
"description": "<string>",
"input_modalities": [
"<string>"
],
"output_modalities": [
"<string>"
],
"context_length": 2,
"max_output_tokens": 2,
"host_provider_id": "<string>",
"custom_provider_name": "<string>",
"custom_provider_url": "<string>",
"routing_policy": "preferred",
"credential_prefix": "<string>",
"credential_suffix": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": "error_type",
"ok": false,
"message": "Human-readable error message",
"description": "Additional error details.",
"generation_id": "G-abc123",
"status_code": 502,
"error_type": "system",
"error_origin": "upstream",
"reason": "all_candidates_failed",
"attempt_count": 2,
"failed_providers": [
"google-ai-studio",
"openai"
],
"failed_statuses": [
403,
429
],
"upstream_error": {
"code": "PERMISSION_DENIED",
"message": "The caller does not have permission.",
"description": "<string>",
"param": "<string>"
},
"failure_sample": [
{
"provider": "<string>",
"type": "<string>",
"status": 123,
"upstream_error_code": "<string>",
"upstream_error_message": "<string>",
"upstream_error_description": "<string>",
"upstream_error_param": "<string>",
"upstream_payload_preview": "<string>",
"retryable": true
}
],
"provider_failure_diagnostics": {
"category": "credentials_not_configured",
"hint": "<string>",
"provider": "<string>"
},
"routing_diagnostics": {
"filterStages": [
{
"stage": "<string>",
"beforeCount": 123,
"afterCount": 123,
"droppedProviders": [
{
"providerId": "<string>",
"reason": "<string>"
}
]
}
]
},
"provider_candidate_diagnostics": {
"totalProviders": 123,
"supportsEndpointCount": 123,
"candidateCount": 123,
"droppedUnsupportedEndpoint": [
"<string>"
],
"droppedMissingAdapter": [
{
"providerId": "<string>",
"endpoint": "<string>"
}
]
},
"provider_enablement": {
"capability": "<string>",
"providersBefore": [
"<string>"
],
"providersAfter": [
"<string>"
],
"dropped": [
{
"providerId": "<string>",
"reason": "<string>"
}
]
},
"missing_pricing_providers": [
"<string>"
],
"provider_payment_required_provider": "openai",
"provider_payment_required_support_notice": "Our upstream provider billing appears to be unavailable. If this persists, contact support.",
"details": [
{}
]
}Requires
private_models:write and an owner or admin identity. Submit slug to rename the workspace-local model; model_id cannot be supplied directly.Authorizations
Bearer token authentication
Path Parameters
Body
application/json
An exact catalogue model ID to attach this endpoint as a provider, or a short slug for automatic matching/workspace namespacing.
Required string length:
1 - 120Maximum string length:
500Required string length:
1 - 255Minimum string length:
8Required range:
x >= 1Required range:
x >= 1Required string length:
1 - 120Available options:
preferred, balanced, fallback Response
Private model updated
Show child attributes
Show child attributes
Last modified on September 4, 2026
Was this page helpful?