diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.GetApiKeyInfoResponse.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.GetApiKeyInfoResponse.g.cs index b83041f8..01dd337f 100644 --- a/src/libs/RetellAI/Generated/RetellAI.Models.GetApiKeyInfoResponse.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.Models.GetApiKeyInfoResponse.g.cs @@ -8,15 +8,6 @@ namespace RetellAI /// public sealed partial class GetApiKeyInfoResponse { - /// - /// Unique id of the org that owns the API key.
- /// Example: org_5cbb51d3cba24c2b8f4ec25b8ded - ///
- /// org_5cbb51d3cba24c2b8f4ec25b8ded - [global::System.Text.Json.Serialization.JsonPropertyName("org_id")] - [global::System.Text.Json.Serialization.JsonRequired] - public required string OrgId { get; set; } - /// /// Display name of the org.
/// Example: Acme Inc @@ -43,10 +34,6 @@ public sealed partial class GetApiKeyInfoResponse /// /// Initializes a new instance of the class. /// - /// - /// Unique id of the org that owns the API key.
- /// Example: org_5cbb51d3cba24c2b8f4ec25b8ded - /// /// /// Display name of the org.
/// Example: Acme Inc @@ -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; } diff --git a/src/libs/RetellAI/openapi.yaml b/src/libs/RetellAI/openapi.yaml index 9520a8df..61de97f2 100644 --- a/src/libs/RetellAI/openapi.yaml +++ b/src/libs/RetellAI/openapi.yaml @@ -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/ @@ -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. @@ -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