Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,6 @@ namespace RetellAI
/// </summary>
public sealed partial class GetApiKeyInfoResponse
{
/// <summary>
/// Unique id of the org that owns the API key.<br/>
/// Example: org_5cbb51d3cba24c2b8f4ec25b8ded
/// </summary>
/// <example>org_5cbb51d3cba24c2b8f4ec25b8ded</example>
[global::System.Text.Json.Serialization.JsonPropertyName("org_id")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string OrgId { get; set; }

/// <summary>
/// Display name of the org.<br/>
/// Example: Acme Inc
Expand All @@ -43,10 +34,6 @@ public sealed partial class GetApiKeyInfoResponse
/// <summary>
/// Initializes a new instance of the <see cref="GetApiKeyInfoResponse" /> class.
/// </summary>
/// <param name="orgId">
/// Unique id of the org that owns the API key.<br/>
/// Example: org_5cbb51d3cba24c2b8f4ec25b8ded
/// </param>
/// <param name="orgName">
/// Display name of the org.<br/>
/// Example: Acme Inc
Expand All @@ -59,11 +46,9 @@ public sealed partial class GetApiKeyInfoResponse
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public GetApiKeyInfoResponse(
string orgId,
string orgName,
string? apiKeyName)
{
this.OrgId = orgId ?? throw new global::System.ArgumentNullException(nameof(orgId));
this.OrgName = orgName ?? throw new global::System.ArgumentNullException(nameof(orgName));
this.ApiKeyName = apiKeyName;
}
Expand Down
9 changes: 1 addition & 8 deletions src/libs/RetellAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: Retell SDK
version: 3.0.0
x-retell-spec-revision: 2026-08-10-c6064a4
x-retell-spec-revision: 2026-08-11-19a8d06
contact:
name: Retell Support
url: https://www.retellai.com/
Expand Down Expand Up @@ -9977,8 +9977,6 @@ paths:
get:
description: Get info about the API key used to authenticate, and the org that owns it.
operationId: getApiKeyInfo
x-retell-sdk-resource: api_key
x-retell-sdk-method: get-info
responses:
'200':
description: Successfully retrieved API key info.
Expand All @@ -9987,14 +9985,9 @@ paths:
schema:
type: object
required:
- org_id
- org_name
- api_key_name
properties:
org_id:
type: string
example: org_5cbb51d3cba24c2b8f4ec25b8ded
description: Unique id of the org that owns the API key.
org_name:
type: string
example: Acme Inc
Expand Down
Loading