From 43535fd839779cd8ebceb594029838f8cf36fab5 Mon Sep 17 00:00:00 2001 From: speakeasybot Date: Sat, 3 Aug 2024 20:53:51 +0000 Subject: [PATCH] ci: regenerated with Speakeasy CLI v1.352.1 --- .speakeasy/workflow.lock | 7 +- .../swagger/openapi-with-code-samples.yaml | 5467 ++++++++++++----- 2 files changed, 3972 insertions(+), 1502 deletions(-) diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index 3fdcf824e..681742e1a 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -1,11 +1,12 @@ -speakeasyVersion: 1.351.3 +speakeasyVersion: 1.352.1 sources: merge-code-samples-into-spec: sourceNamespace: merge-code-samples-into-spec - sourceRevisionDigest: sha256:99b0328020a1ec665a5dbe5b2cae2a684a3c8aba71b268e7a4317d751ad96382 - sourceBlobDigest: sha256:5849445207d51d192d9dea448b86fd23bbf23644845222730175493c3c54c68e + sourceRevisionDigest: sha256:64aa841f4a81958114ef5c8d0d36097d8cd6816ba4977507b48d155017787513 + sourceBlobDigest: sha256:38fb5b85581de4dfe07fb4c98d63c3a97c14f558ac6565128c2ad9bacd955057 tags: - latest + - main targets: {} workflow: workflowVersion: 1.0.0 diff --git a/packages/api/swagger/openapi-with-code-samples.yaml b/packages/api/swagger/openapi-with-code-samples.yaml index 5241415c8..74dadc23b 100644 --- a/packages/api/swagger/openapi-with-code-samples.yaml +++ b/packages/api/swagger/openapi-with-code-samples.yaml @@ -7,9 +7,9 @@ paths: parameters: [] responses: '200': - description: '' + description: Returns a greeting message content: - application/json: + text/plain: schema: type: string x-codeSamples: @@ -18,7 +18,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hello(); @@ -31,9 +33,12 @@ paths: - lang: python label: hello source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hello() @@ -47,26 +52,29 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) ctx := context.Background() res, err := s.Hello(ctx) if err != nil { log.Fatal(err) } - if res.String != nil { + if res.Res != nil { // handle response } } - lang: ruby label: hello - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hello()\n\nif ! res.string.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hello()\n\nif ! res.res.nil?\n # handle response\nend" /health: get: operationId: health @@ -74,18 +82,21 @@ paths: parameters: [] responses: '200': - description: '' + description: API is healthy content: application/json: schema: type: number + example: 200 x-codeSamples: - lang: typescript label: health source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.health(); @@ -98,9 +109,12 @@ paths: - lang: python label: health source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.health() @@ -114,13 +128,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) ctx := context.Background() res, err := s.Health(ctx) @@ -133,7 +150,7 @@ paths: } - lang: ruby label: health - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.health()\n\nif ! res.number.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.health()\n\nif ! res.number.nil?\n # handle response\nend" /webhooks: get: operationId: listWebhooks @@ -150,13 +167,16 @@ paths: $ref: '#/components/schemas/WebhookResponse' tags: &ref_0 - webhooks + x-speakeasy-group: webhooks x-codeSamples: - lang: typescript label: listWebhooks source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.webhooks.list(); @@ -169,9 +189,12 @@ paths: - lang: python label: listWebhooks source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.webhooks.list() @@ -185,13 +208,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) ctx := context.Background() res, err := s.Webhooks.List(ctx) @@ -204,7 +230,7 @@ paths: } - lang: ruby label: listWebhooks - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.webhooks.list()\n\nif ! res.webhook_responses.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.webhooks.list()\n\nif ! res.webhook_responses.nil?\n # handle response\nend" post: operationId: createWebhookPublic summary: Add webhook metadata @@ -223,13 +249,16 @@ paths: schema: $ref: '#/components/schemas/WebhookResponse' tags: *ref_0 + x-speakeasy-group: webhooks x-codeSamples: - lang: typescript label: createWebhookPublic source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.webhooks.create({ @@ -247,9 +276,12 @@ paths: - lang: python label: createWebhookPublic source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.webhooks.create(request={ @@ -268,6 +300,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -275,9 +308,11 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.WebhookDto{ - URL: "http://limp-pastry.org", + URL: gosdk.String("http://limp-pastry.org"), Scope: []string{ "", }, @@ -293,7 +328,7 @@ paths: } - lang: ruby label: createWebhookPublic - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::WebhookDto.new(\n url: \"http://limp-pastry.org\",\n scope: [\n \"\",\n ],\n)\n \nres = s.webhooks.create(req)\n\nif ! res.webhook_response.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::WebhookDto.new(\n url: \"http://limp-pastry.org\",\n scope: [\n \"\",\n ],\n)\n \nres = s.webhooks.create(req)\n\nif ! res.webhook_response.nil?\n # handle response\nend" /webhooks/{id}: delete: operationId: delete @@ -314,17 +349,19 @@ paths: schema: $ref: '#/components/schemas/WebhookResponse' tags: *ref_0 - x-speakeasy-group: webhooks.{id} + x-speakeasy-group: webhooks x-codeSamples: - lang: typescript label: delete source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { - const result = await panora.webhooks.id.delete({ + const result = await panora.webhooks.delete({ id: "", }); @@ -336,12 +373,15 @@ paths: - lang: python label: delete source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.webhooks.id.delete(id="") + res = s.webhooks.delete(id="") if res is not None: # handle response @@ -352,16 +392,19 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var id string = "" ctx := context.Background() - res, err := s.Webhooks.{id}.Delete(ctx, id) + res, err := s.Webhooks.Delete(ctx, id) if err != nil { log.Fatal(err) } @@ -371,7 +414,7 @@ paths: } - lang: ruby label: delete - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.webhooks_id.delete(id=\"\")\n\nif ! res.webhook_response.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.webhooks.delete(id=\"\")\n\nif ! res.webhook_response.nil?\n # handle response\nend" put: operationId: updateStatus summary: Update webhook status @@ -391,17 +434,19 @@ paths: schema: $ref: '#/components/schemas/WebhookResponse' tags: *ref_0 - x-speakeasy-group: webhooks.{id} + x-speakeasy-group: webhooks x-codeSamples: - lang: typescript label: updateStatus source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { - const result = await panora.webhooks.id.updateStatus({ + const result = await panora.webhooks.updateStatus({ id: "", }); @@ -413,12 +458,15 @@ paths: - lang: python label: updateStatus source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.webhooks.id.update_status(id="") + res = s.webhooks.update_status(id="") if res is not None: # handle response @@ -429,16 +477,19 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var id string = "" ctx := context.Background() - res, err := s.Webhooks.{id}.UpdateStatus(ctx, id) + res, err := s.Webhooks.UpdateStatus(ctx, id) if err != nil { log.Fatal(err) } @@ -448,7 +499,7 @@ paths: } - lang: ruby label: updateStatus - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.webhooks_id.update_status(id=\"\")\n\nif ! res.webhook_response.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.webhooks.update_status(id=\"\")\n\nif ! res.webhook_response.nil?\n # handle response\nend" /webhooks/verifyEvent: post: operationId: verifyEvent @@ -461,25 +512,35 @@ paths: schema: $ref: '#/components/schemas/SignatureVerificationDto' responses: - '201': + '200': description: '' content: application/json: schema: - $ref: '#/components/schemas/EventPayload' + properties: + data: + type: object + additionalProperties: true + description: Dynamic event payload + '201': + description: '' tags: *ref_0 - x-speakeasy-group: webhooks.verifyevent + x-speakeasy-group: webhooks x-codeSamples: - lang: typescript label: verifyEvent source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { - const result = await panora.webhooks.verifyevent.verifyEvent({ - payload: {}, + const result = await panora.webhooks.verifyEvent({ + payload: { + "key": "", + }, signature: "", secret: "", }); @@ -492,13 +553,18 @@ paths: - lang: python label: verifyEvent source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.webhooks.verifyevent.verify_event(request={ - "payload": {}, + res = s.webhooks.verify_event(request={ + "payload": { + "key": "", + }, "signature": "", "secret": "", }) @@ -512,6 +578,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -519,24 +586,28 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.SignatureVerificationDto{ - Payload: components.Payload{}, - Signature: "", - Secret: "", + Payload: map[string]any{ + "key": "", + }, + Signature: gosdk.String(""), + Secret: gosdk.String(""), } ctx := context.Background() - res, err := s.Webhooks.Verifyevent.VerifyEvent(ctx, request) + res, err := s.Webhooks.VerifyEvent(ctx, request) if err != nil { log.Fatal(err) } - if res.EventPayload != nil { + if res.Object != nil { // handle response } } - lang: ruby label: verifyEvent - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::SignatureVerificationDto.new(\n payload: ::OpenApiSDK::Shared::Payload.new(),\n signature: \"\",\n secret: \"\",\n)\n \nres = s.webhooks_verifyevent.verify_event(req)\n\nif ! res.event_payload.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::SignatureVerificationDto.new(\n payload: {\n \"East\": \"\",\n },\n signature: \"\",\n secret: \"\",\n)\n \nres = s.webhooks.verify_event(req)\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/tickets: get: operationId: listTicketingTicket @@ -589,7 +660,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.tickets.list({ @@ -604,9 +677,12 @@ paths: - lang: python label: listTicketingTicket source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.tickets.list(x_connection_token="") @@ -620,13 +696,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Tickets.List(ctx, xConnectionToken, nil, nil, nil) @@ -639,7 +718,7 @@ paths: } - lang: ruby label: listTicketingTicket - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_tickets.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_tickets.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createTicketingTicket summary: Create Tickets @@ -678,7 +757,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.tickets.create({ @@ -686,7 +767,6 @@ paths: unifiedTicketingTicketInput: { name: "", description: "Multi-tiered human-resource model", - fieldMappings: {}, }, }); @@ -698,15 +778,17 @@ paths: - lang: python label: createTicketingTicket source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.tickets.create(x_connection_token="", unified_ticketing_ticket_input={ "name": "", "description": "Multi-tiered human-resource model", - "field_mappings": {}, }) if res is not None: @@ -718,6 +800,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -725,13 +808,14 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedTicketingTicketInput := components.UnifiedTicketingTicketInput{ - Name: "", - Description: "Multi-tiered human-resource model", - FieldMappings: components.UnifiedTicketingTicketInputFieldMappings{}, + Name: gosdk.String(""), + Description: gosdk.String("Multi-tiered human-resource model"), } ctx := context.Background() res, err := s.Ticketing.Tickets.Create(ctx, xConnectionToken, unifiedTicketingTicketInput, nil) @@ -744,7 +828,7 @@ paths: } - lang: ruby label: createTicketingTicket - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_tickets.create(x_connection_token=\"\", unified_ticketing_ticket_input=::OpenApiSDK::Shared::UnifiedTicketingTicketInput.new(\n name: \"\",\n description: \"Multi-tiered human-resource model\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedTicketingTicketInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ticketing_ticket_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_tickets.create(x_connection_token=\"\", unified_ticketing_ticket_input=::OpenApiSDK::Shared::UnifiedTicketingTicketInput.new(\n name: \"\",\n description: \"Multi-tiered human-resource model\",\n ), remote_data=false)\n\nif ! res.unified_ticketing_ticket_output.nil?\n # handle response\nend" /ticketing/tickets/{id}: get: operationId: retrieveTicketingTicket @@ -784,7 +868,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.tickets.retrieve({ @@ -800,9 +886,12 @@ paths: - lang: python label: retrieveTicketingTicket source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.tickets.retrieve(x_connection_token="", id="") @@ -816,13 +905,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -837,7 +929,7 @@ paths: } - lang: ruby label: retrieveTicketingTicket - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_tickets.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_ticket_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_tickets.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_ticket_output.nil?\n # handle response\nend" /ticketing/users: get: operationId: listTicketingUsers @@ -890,7 +982,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.users.list({ @@ -905,9 +999,12 @@ paths: - lang: python label: listTicketingUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.users.list(x_connection_token="") @@ -921,13 +1018,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Users.List(ctx, xConnectionToken, nil, nil, nil) @@ -940,7 +1040,7 @@ paths: } - lang: ruby label: listTicketingUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/users/{id}: get: operationId: retrieveTicketingUser @@ -980,7 +1080,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.users.retrieve({ @@ -996,9 +1098,12 @@ paths: - lang: python label: retrieveTicketingUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.users.retrieve(x_connection_token="", id="") @@ -1012,13 +1117,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -1033,7 +1141,7 @@ paths: } - lang: ruby label: retrieveTicketingUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_user_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_user_output.nil?\n # handle response\nend" /ticketing/accounts: get: operationId: listTicketingAccount @@ -1086,7 +1194,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.accounts.list({ @@ -1101,9 +1211,12 @@ paths: - lang: python label: listTicketingAccount source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.accounts.list(x_connection_token="") @@ -1117,13 +1230,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Accounts.List(ctx, xConnectionToken, nil, nil, nil) @@ -1136,7 +1252,7 @@ paths: } - lang: ruby label: listTicketingAccount - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_accounts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_accounts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/accounts/{id}: get: operationId: retrieveTicketingAccount @@ -1176,7 +1292,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.accounts.retrieve({ @@ -1192,9 +1310,12 @@ paths: - lang: python label: retrieveTicketingAccount source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.accounts.retrieve(x_connection_token="", id="") @@ -1208,13 +1329,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -1229,7 +1353,7 @@ paths: } - lang: ruby label: retrieveTicketingAccount - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_accounts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_account_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_accounts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_account_output.nil?\n # handle response\nend" /ticketing/contacts: get: operationId: listTicketingContacts @@ -1282,7 +1406,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.contacts.list({ @@ -1297,9 +1423,12 @@ paths: - lang: python label: listTicketingContacts source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.contacts.list(x_connection_token="") @@ -1313,13 +1442,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Contacts.List(ctx, xConnectionToken, nil, nil, nil) @@ -1332,7 +1464,7 @@ paths: } - lang: ruby label: listTicketingContacts - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/contacts/{id}: get: operationId: retrieveTicketingContact @@ -1378,7 +1510,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.contacts.retrieve({ @@ -1394,9 +1528,12 @@ paths: - lang: python label: retrieveTicketingContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.contacts.retrieve(x_connection_token="", id="") @@ -1410,13 +1547,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -1431,7 +1571,7 @@ paths: } - lang: ruby label: retrieveTicketingContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.object.nil?\n # handle response\nend" /sync/status/{vertical}: get: operationId: status @@ -1451,27 +1591,16 @@ paths: x-codeSamples: - lang: typescript label: status - source: |- - import { Panora } from "@panora/sdk"; - - const panora = new Panora(); - - async function run() { - const result = await panora.sync.status({ - vertical: "", - }); - - // Handle the result - console.log(result) - } - - run(); + source: "import { Panora } from \"@panora/sdk\";\n\nconst panora = new Panora({\n apiKey: process.env.API_KEY,\n});\n\nasync function run() {\n await panora.sync.status({\n vertical: \"\",\n });\n\n \n}\n\nrun();" - lang: python label: status source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) s.sync.status(vertical="") @@ -1483,13 +1612,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var vertical string = "" ctx := context.Background() res, err := s.Sync.Status(ctx, vertical) @@ -1502,17 +1634,19 @@ paths: } - lang: ruby label: status - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.sync.status(vertical=\"\")\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.sync.status(vertical=\"\")\n\nif res.status_code == 200\n # handle response\nend" /sync/resync: post: operationId: resync summary: Resync common objects across a vertical parameters: [] responses: - '200': - description: '' '201': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/ResyncStatusDto' tags: *ref_5 x-speakeasy-group: sync x-codeSamples: @@ -1521,7 +1655,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.sync.resync(); @@ -1534,44 +1670,52 @@ paths: - lang: python label: resync source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.sync.resync() + res = s.sync.resync() - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: resync source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) ctx := context.Background() res, err := s.Sync.Resync(ctx) if err != nil { log.Fatal(err) } - if res != nil { + if res.ResyncStatusDto != nil { // handle response } } - lang: ruby label: resync - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.sync.resync()\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.sync.resync()\n\nif ! res.resync_status_dto.nil?\n # handle response\nend" /crm/companies: get: operationId: listCrmCompany - summary: List Companies + summary: List Companies parameters: - name: x-connection-token required: true @@ -1620,7 +1764,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.companies.list({ @@ -1635,9 +1781,12 @@ paths: - lang: python label: listCrmCompany source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.companies.list(x_connection_token="") @@ -1651,13 +1800,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Companies.List(ctx, xConnectionToken, nil, nil, nil) @@ -1670,7 +1822,7 @@ paths: } - lang: ruby label: listCrmCompany - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_companies.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_companies.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmCompany summary: Create Companies @@ -1709,14 +1861,15 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.companies.create({ xConnectionToken: "", unifiedCrmCompanyInput: { name: "", - fieldMappings: {}, }, }); @@ -1728,14 +1881,16 @@ paths: - lang: python label: createCrmCompany source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.companies.create(x_connection_token="", unified_crm_company_input={ "name": "", - "field_mappings": {}, }) if res is not None: @@ -1747,6 +1902,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -1754,12 +1910,13 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmCompanyInput := components.UnifiedCrmCompanyInput{ - Name: "", - FieldMappings: components.UnifiedCrmCompanyInputFieldMappings{}, + Name: gosdk.String(""), } ctx := context.Background() res, err := s.Crm.Companies.Create(ctx, xConnectionToken, unifiedCrmCompanyInput, nil) @@ -1772,7 +1929,7 @@ paths: } - lang: ruby label: createCrmCompany - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_companies.create(x_connection_token=\"\", unified_crm_company_input=::OpenApiSDK::Shared::UnifiedCrmCompanyInput.new(\n name: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmCompanyInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_company_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_companies.create(x_connection_token=\"\", unified_crm_company_input=::OpenApiSDK::Shared::UnifiedCrmCompanyInput.new(\n name: \"\",\n ), remote_data=false)\n\nif ! res.unified_crm_company_output.nil?\n # handle response\nend" /crm/companies/{id}: get: operationId: retrieveCrmCompany @@ -1812,7 +1969,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.companies.retrieve({ @@ -1828,9 +1987,12 @@ paths: - lang: python label: retrieveCrmCompany source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.companies.retrieve(x_connection_token="", id="") @@ -1844,13 +2006,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -1865,7 +2030,7 @@ paths: } - lang: ruby label: retrieveCrmCompany - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_companies.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_company_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_companies.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_company_output.nil?\n # handle response\nend" /crm/contacts: get: operationId: listCrmContacts @@ -1918,7 +2083,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.contacts.list({ @@ -1933,9 +2100,12 @@ paths: - lang: python label: listCrmContacts source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.contacts.list(x_connection_token="") @@ -1949,13 +2119,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Contacts.List(ctx, xConnectionToken, nil, nil, nil) @@ -1968,7 +2141,7 @@ paths: } - lang: ruby label: listCrmContacts - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmContact summary: Create Contacts @@ -2007,7 +2180,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.contacts.create({ @@ -2015,7 +2190,6 @@ paths: unifiedCrmContactInput: { firstName: "Jed", lastName: "Kuhn", - fieldMappings: {}, }, }); @@ -2027,15 +2201,17 @@ paths: - lang: python label: createCrmContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.contacts.create(x_connection_token="", unified_crm_contact_input={ "first_name": "Jed", "last_name": "Kuhn", - "field_mappings": {}, }) if res is not None: @@ -2047,6 +2223,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -2054,13 +2231,14 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmContactInput := components.UnifiedCrmContactInput{ - FirstName: "Jed", - LastName: "Kuhn", - FieldMappings: components.UnifiedCrmContactInputFieldMappings{}, + FirstName: gosdk.String("Jed"), + LastName: gosdk.String("Kuhn"), } ctx := context.Background() res, err := s.Crm.Contacts.Create(ctx, xConnectionToken, unifiedCrmContactInput, nil) @@ -2073,7 +2251,7 @@ paths: } - lang: ruby label: createCrmContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_contacts.create(x_connection_token=\"\", unified_crm_contact_input=::OpenApiSDK::Shared::UnifiedCrmContactInput.new(\n first_name: \"Jed\",\n last_name: \"Kuhn\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmContactInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_contacts.create(x_connection_token=\"\", unified_crm_contact_input=::OpenApiSDK::Shared::UnifiedCrmContactInput.new(\n first_name: \"Jed\",\n last_name: \"Kuhn\",\n ), remote_data=false)\n\nif ! res.unified_crm_contact_output.nil?\n # handle response\nend" /crm/contacts/{id}: get: operationId: retrieveCrmContact @@ -2113,7 +2291,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.contacts.retrieve({ @@ -2129,9 +2309,12 @@ paths: - lang: python label: retrieveCrmContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.contacts.retrieve(x_connection_token="", id="") @@ -2145,13 +2328,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -2166,7 +2352,7 @@ paths: } - lang: ruby label: retrieveCrmContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_contact_output.nil?\n # handle response\nend" /crm/deals: get: operationId: listCrmDeals @@ -2219,7 +2405,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.deals.list({ @@ -2234,9 +2422,12 @@ paths: - lang: python label: listCrmDeals source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.deals.list(x_connection_token="") @@ -2250,13 +2441,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Deals.List(ctx, xConnectionToken, nil, nil, nil) @@ -2269,7 +2463,7 @@ paths: } - lang: ruby label: listCrmDeals - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_deals.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_deals.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmDeal summary: Create Deals @@ -2308,7 +2502,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.deals.create({ @@ -2317,7 +2513,6 @@ paths: name: "", description: "Multi-tiered human-resource model", amount: 8592.13, - fieldMappings: {}, }, }); @@ -2329,16 +2524,18 @@ paths: - lang: python label: createCrmDeal source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.deals.create(x_connection_token="", unified_crm_deal_input={ "name": "", "description": "Multi-tiered human-resource model", "amount": 8592.13, - "field_mappings": {}, }) if res is not None: @@ -2350,6 +2547,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -2357,14 +2555,15 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmDealInput := components.UnifiedCrmDealInput{ - Name: "", - Description: "Multi-tiered human-resource model", - Amount: 8592.13, - FieldMappings: components.UnifiedCrmDealInputFieldMappings{}, + Name: gosdk.String(""), + Description: gosdk.String("Multi-tiered human-resource model"), + Amount: gosdk.Float64(8592.13), } ctx := context.Background() res, err := s.Crm.Deals.Create(ctx, xConnectionToken, unifiedCrmDealInput, nil) @@ -2377,7 +2576,7 @@ paths: } - lang: ruby label: createCrmDeal - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_deals.create(x_connection_token=\"\", unified_crm_deal_input=::OpenApiSDK::Shared::UnifiedCrmDealInput.new(\n name: \"\",\n description: \"Multi-tiered human-resource model\",\n amount: 8592.13,\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmDealInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_deal_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_deals.create(x_connection_token=\"\", unified_crm_deal_input=::OpenApiSDK::Shared::UnifiedCrmDealInput.new(\n name: \"\",\n description: \"Multi-tiered human-resource model\",\n amount: 8592.13,\n ), remote_data=false)\n\nif ! res.unified_crm_deal_output.nil?\n # handle response\nend" /crm/deals/{id}: get: operationId: retrieveCrmDeal @@ -2417,7 +2616,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.deals.retrieve({ @@ -2433,9 +2634,12 @@ paths: - lang: python label: retrieveCrmDeal source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.deals.retrieve(x_connection_token="", id="") @@ -2449,13 +2653,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -2470,7 +2677,7 @@ paths: } - lang: ruby label: retrieveCrmDeal - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_deals.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_deal_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_deals.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_deal_output.nil?\n # handle response\nend" /crm/engagements: get: operationId: listCrmEngagements @@ -2523,7 +2730,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.engagements.list({ @@ -2538,9 +2747,12 @@ paths: - lang: python label: listCrmEngagements source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.engagements.list(x_connection_token="") @@ -2554,13 +2766,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Engagements.List(ctx, xConnectionToken, nil, nil, nil) @@ -2573,7 +2788,7 @@ paths: } - lang: ruby label: listCrmEngagements - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_engagements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_engagements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmEngagement summary: Create Engagements @@ -2612,14 +2827,15 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.engagements.create({ xConnectionToken: "", unifiedCrmEngagementInput: { type: "", - fieldMappings: {}, }, }); @@ -2631,14 +2847,16 @@ paths: - lang: python label: createCrmEngagement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.engagements.create(x_connection_token="", unified_crm_engagement_input={ "type": "", - "field_mappings": {}, }) if res is not None: @@ -2650,6 +2868,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -2657,12 +2876,13 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmEngagementInput := components.UnifiedCrmEngagementInput{ - Type: "", - FieldMappings: components.UnifiedCrmEngagementInputFieldMappings{}, + Type: gosdk.String(""), } ctx := context.Background() res, err := s.Crm.Engagements.Create(ctx, xConnectionToken, unifiedCrmEngagementInput, nil) @@ -2675,7 +2895,7 @@ paths: } - lang: ruby label: createCrmEngagement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_engagements.create(x_connection_token=\"\", unified_crm_engagement_input=::OpenApiSDK::Shared::UnifiedCrmEngagementInput.new(\n type: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmEngagementInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_engagement_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_engagements.create(x_connection_token=\"\", unified_crm_engagement_input=::OpenApiSDK::Shared::UnifiedCrmEngagementInput.new(\n type: \"\",\n ), remote_data=false)\n\nif ! res.unified_crm_engagement_output.nil?\n # handle response\nend" /crm/engagements/{id}: get: operationId: retrieveCrmEngagement @@ -2715,7 +2935,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.engagements.retrieve({ @@ -2731,9 +2953,12 @@ paths: - lang: python label: retrieveCrmEngagement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.engagements.retrieve(x_connection_token="", id="") @@ -2747,13 +2972,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -2768,7 +2996,7 @@ paths: } - lang: ruby label: retrieveCrmEngagement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_engagements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_engagement_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_engagements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_engagement_output.nil?\n # handle response\nend" /crm/notes: get: operationId: listCrmNote @@ -2821,7 +3049,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.notes.list({ @@ -2836,9 +3066,12 @@ paths: - lang: python label: listCrmNote source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.notes.list(x_connection_token="") @@ -2852,13 +3085,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Notes.List(ctx, xConnectionToken, nil, nil, nil) @@ -2871,7 +3107,7 @@ paths: } - lang: ruby label: listCrmNote - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_notes.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_notes.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmNote summary: Create Notes @@ -2910,14 +3146,15 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.notes.create({ xConnectionToken: "", unifiedCrmNoteInput: { content: "", - fieldMappings: {}, }, }); @@ -2929,14 +3166,16 @@ paths: - lang: python label: createCrmNote source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.notes.create(x_connection_token="", unified_crm_note_input={ "content": "", - "field_mappings": {}, }) if res is not None: @@ -2948,6 +3187,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -2955,12 +3195,13 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmNoteInput := components.UnifiedCrmNoteInput{ - Content: "", - FieldMappings: components.UnifiedCrmNoteInputFieldMappings{}, + Content: gosdk.String(""), } ctx := context.Background() res, err := s.Crm.Notes.Create(ctx, xConnectionToken, unifiedCrmNoteInput, nil) @@ -2973,7 +3214,7 @@ paths: } - lang: ruby label: createCrmNote - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_notes.create(x_connection_token=\"\", unified_crm_note_input=::OpenApiSDK::Shared::UnifiedCrmNoteInput.new(\n content: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmNoteInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_note_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_notes.create(x_connection_token=\"\", unified_crm_note_input=::OpenApiSDK::Shared::UnifiedCrmNoteInput.new(\n content: \"\",\n ), remote_data=false)\n\nif ! res.unified_crm_note_output.nil?\n # handle response\nend" /crm/notes/{id}: get: operationId: retrieveCrmNote @@ -3013,7 +3254,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.notes.retrieve({ @@ -3029,9 +3272,12 @@ paths: - lang: python label: retrieveCrmNote source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.notes.retrieve(x_connection_token="", id="") @@ -3045,13 +3291,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -3066,7 +3315,7 @@ paths: } - lang: ruby label: retrieveCrmNote - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_notes.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_note_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_notes.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_note_output.nil?\n # handle response\nend" /crm/stages: get: operationId: listCrmStages @@ -3119,7 +3368,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.stages.list({ @@ -3134,9 +3385,12 @@ paths: - lang: python label: listCrmStages source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.stages.list(x_connection_token="") @@ -3150,13 +3404,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Stages.List(ctx, xConnectionToken, nil, nil, nil) @@ -3169,7 +3426,7 @@ paths: } - lang: ruby label: listCrmStages - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_stages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_stages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /crm/stages/{id}: get: operationId: retrieveCrmStage @@ -3209,7 +3466,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.stages.retrieve({ @@ -3225,9 +3484,12 @@ paths: - lang: python label: retrieveCrmStage source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.stages.retrieve(x_connection_token="", id="") @@ -3241,13 +3503,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -3262,7 +3527,7 @@ paths: } - lang: ruby label: retrieveCrmStage - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_stages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_stage_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_stages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_stage_output.nil?\n # handle response\nend" /crm/tasks: get: operationId: listCrmTask @@ -3315,7 +3580,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.tasks.list({ @@ -3330,9 +3597,12 @@ paths: - lang: python label: listCrmTask source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.tasks.list(x_connection_token="") @@ -3346,13 +3616,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Tasks.List(ctx, xConnectionToken, nil, nil, nil) @@ -3365,7 +3638,7 @@ paths: } - lang: ruby label: listCrmTask - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_tasks.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_tasks.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createCrmTask summary: Create Tasks @@ -3404,7 +3677,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.tasks.create({ @@ -3413,7 +3688,6 @@ paths: subject: "", content: "", status: "", - fieldMappings: {}, }, }); @@ -3425,16 +3699,18 @@ paths: - lang: python label: createCrmTask source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.tasks.create(x_connection_token="", unified_crm_task_input={ "subject": "", "content": "", "status": "", - "field_mappings": {}, }) if res is not None: @@ -3446,6 +3722,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -3453,14 +3730,15 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedCrmTaskInput := components.UnifiedCrmTaskInput{ - Subject: "", - Content: "", - Status: "", - FieldMappings: components.UnifiedCrmTaskInputFieldMappings{}, + Subject: gosdk.String(""), + Content: gosdk.String(""), + Status: gosdk.String(""), } ctx := context.Background() res, err := s.Crm.Tasks.Create(ctx, xConnectionToken, unifiedCrmTaskInput, nil) @@ -3473,7 +3751,7 @@ paths: } - lang: ruby label: createCrmTask - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_tasks.create(x_connection_token=\"\", unified_crm_task_input=::OpenApiSDK::Shared::UnifiedCrmTaskInput.new(\n subject: \"\",\n content: \"\",\n status: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedCrmTaskInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_crm_task_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_tasks.create(x_connection_token=\"\", unified_crm_task_input=::OpenApiSDK::Shared::UnifiedCrmTaskInput.new(\n subject: \"\",\n content: \"\",\n status: \"\",\n ), remote_data=false)\n\nif ! res.unified_crm_task_output.nil?\n # handle response\nend" /crm/tasks/{id}: get: operationId: retrieveCrmTask @@ -3513,7 +3791,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.tasks.retrieve({ @@ -3529,9 +3809,12 @@ paths: - lang: python label: retrieveCrmTask source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.tasks.retrieve(x_connection_token="", id="") @@ -3545,13 +3828,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -3566,7 +3852,7 @@ paths: } - lang: ruby label: retrieveCrmTask - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_tasks.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_task_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_tasks.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_task_output.nil?\n # handle response\nend" /crm/users: get: operationId: listCrmUsers @@ -3619,7 +3905,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.users.list({ @@ -3634,9 +3922,12 @@ paths: - lang: python label: listCrmUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.users.list(x_connection_token="") @@ -3650,13 +3941,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Crm.Users.List(ctx, xConnectionToken, nil, nil, nil) @@ -3669,7 +3963,7 @@ paths: } - lang: ruby label: listCrmUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /crm/users/{id}: get: operationId: retrieveCrmUser @@ -3709,7 +4003,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.crm.users.retrieve({ @@ -3725,9 +4021,12 @@ paths: - lang: python label: retrieveCrmUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.crm.users.retrieve(x_connection_token="", id="") @@ -3741,13 +4040,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -3762,7 +4064,7 @@ paths: } - lang: ruby label: retrieveCrmUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.crm_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_user_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.crm_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_crm_user_output.nil?\n # handle response\nend" /ticketing/collections: get: operationId: listTicketingCollections @@ -3816,7 +4118,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.collections.list({ @@ -3831,9 +4135,12 @@ paths: - lang: python label: listTicketingCollections source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.collections.list(x_connection_token="") @@ -3847,13 +4154,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Collections.List(ctx, xConnectionToken, nil, nil, nil) @@ -3866,7 +4176,7 @@ paths: } - lang: ruby label: listTicketingCollections - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_collections.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_collections.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/collections/{id}: get: operationId: retrieveCollection @@ -3906,7 +4216,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.collections.retrieve({ @@ -3922,9 +4234,12 @@ paths: - lang: python label: retrieveCollection source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.collections.retrieve(x_connection_token="", id="") @@ -3938,13 +4253,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -3959,7 +4277,7 @@ paths: } - lang: ruby label: retrieveCollection - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_collections.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_collection_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_collections.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_collection_output.nil?\n # handle response\nend" /ticketing/comments: get: operationId: listTicketingComments @@ -4012,7 +4330,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.comments.list({ @@ -4027,9 +4347,12 @@ paths: - lang: python label: listTicketingComments source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.comments.list(x_connection_token="") @@ -4043,13 +4366,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Comments.List(ctx, xConnectionToken, nil, nil, nil) @@ -4062,7 +4388,7 @@ paths: } - lang: ruby label: listTicketingComments - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_comments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_comments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createTicketingComment summary: Create Comments @@ -4101,7 +4427,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.comments.create({ @@ -4119,9 +4447,12 @@ paths: - lang: python label: createTicketingComment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.comments.create(x_connection_token="", unified_ticketing_comment_input={ @@ -4137,6 +4468,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -4144,11 +4476,13 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedTicketingCommentInput := components.UnifiedTicketingCommentInput{ - Body: "", + Body: gosdk.String(""), } ctx := context.Background() res, err := s.Ticketing.Comments.Create(ctx, xConnectionToken, unifiedTicketingCommentInput, nil) @@ -4161,7 +4495,7 @@ paths: } - lang: ruby label: createTicketingComment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_comments.create(x_connection_token=\"\", unified_ticketing_comment_input=::OpenApiSDK::Shared::UnifiedTicketingCommentInput.new(\n body: \"\",\n ), remote_data=false)\n\nif ! res.unified_ticketing_comment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_comments.create(x_connection_token=\"\", unified_ticketing_comment_input=::OpenApiSDK::Shared::UnifiedTicketingCommentInput.new(\n body: \"\",\n ), remote_data=false)\n\nif ! res.unified_ticketing_comment_output.nil?\n # handle response\nend" /ticketing/comments/{id}: get: operationId: retrieveTicketingComment @@ -4207,7 +4541,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.comments.retrieve({ @@ -4223,9 +4559,12 @@ paths: - lang: python label: retrieveTicketingComment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.comments.retrieve(x_connection_token="", id="") @@ -4239,13 +4578,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -4260,7 +4602,7 @@ paths: } - lang: ruby label: retrieveTicketingComment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_comments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_comments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/tags: get: operationId: listTicketingTags @@ -4313,7 +4655,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.tags.list({ @@ -4328,9 +4672,12 @@ paths: - lang: python label: listTicketingTags source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.tags.list(x_connection_token="") @@ -4344,13 +4691,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Tags.List(ctx, xConnectionToken, nil, nil, nil) @@ -4363,7 +4713,7 @@ paths: } - lang: ruby label: listTicketingTags - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_tags.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_tags.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/tags/{id}: get: operationId: retrieveTicketingTag @@ -4403,7 +4753,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.tags.retrieve({ @@ -4419,9 +4771,12 @@ paths: - lang: python label: retrieveTicketingTag source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.tags.retrieve(x_connection_token="", id="") @@ -4435,13 +4790,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -4456,7 +4814,7 @@ paths: } - lang: ruby label: retrieveTicketingTag - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_tags.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_tag_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_tags.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_tag_output.nil?\n # handle response\nend" /ticketing/teams: get: operationId: listTicketingTeams @@ -4509,7 +4867,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.teams.list({ @@ -4524,9 +4884,12 @@ paths: - lang: python label: listTicketingTeams source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.teams.list(x_connection_token="") @@ -4540,13 +4903,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Teams.List(ctx, xConnectionToken, nil, nil, nil) @@ -4559,7 +4925,7 @@ paths: } - lang: ruby label: listTicketingTeams - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_teams.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_teams.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ticketing/teams/{id}: get: operationId: retrieveTicketingTeam @@ -4599,7 +4965,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.teams.retrieve({ @@ -4615,9 +4983,12 @@ paths: - lang: python label: retrieveTicketingTeam source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.teams.retrieve(x_connection_token="", id="") @@ -4631,13 +5002,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -4652,7 +5026,7 @@ paths: } - lang: ruby label: retrieveTicketingTeam - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_teams.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_team_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_teams.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_team_output.nil?\n # handle response\nend" /linked_users: post: operationId: createLinkedUser @@ -4667,6 +5041,10 @@ paths: responses: '201': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/LinkedUserResponse' tags: &ref_18 - linkedUsers x-codeSamples: @@ -4675,7 +5053,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.linkedUsers.create({ @@ -4691,23 +5071,29 @@ paths: - lang: python label: createLinkedUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.linked_users.create(request={ + res = s.linked_users.create(request={ "linked_user_origin_id": "", "alias": "", }) - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: createLinkedUser source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -4715,23 +5101,25 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.CreateLinkedUserDto{ - LinkedUserOriginID: "", - Alias: "", + LinkedUserOriginID: gosdk.String(""), + Alias: gosdk.String(""), } ctx := context.Background() res, err := s.LinkedUsers.Create(ctx, request) if err != nil { log.Fatal(err) } - if res != nil { + if res.LinkedUserResponse != nil { // handle response } } - lang: ruby label: createLinkedUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::CreateLinkedUserDto.new(\n linked_user_origin_id: \"\",\n alias_: \"\",\n)\n \nres = s.linked_users.create(req)\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::CreateLinkedUserDto.new(\n linked_user_origin_id: \"\",\n alias_: \"\",\n)\n \nres = s.linked_users.create(req)\n\nif ! res.linked_user_response.nil?\n # handle response\nend" get: operationId: listLinkedUsers summary: List Linked Users @@ -4739,6 +5127,12 @@ paths: responses: '200': description: '' + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/LinkedUserResponse' tags: *ref_18 x-codeSamples: - lang: typescript @@ -4746,7 +5140,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.linkedUsers.list(); @@ -4759,40 +5155,48 @@ paths: - lang: python label: listLinkedUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.linked_users.list() + res = s.linked_users.list() - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: listLinkedUsers source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) ctx := context.Background() res, err := s.LinkedUsers.List(ctx) if err != nil { log.Fatal(err) } - if res != nil { + if res.LinkedUserResponses != nil { // handle response } } - lang: ruby label: listLinkedUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.linked_users.list()\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.linked_users.list()\n\nif ! res.linked_user_responses.nil?\n # handle response\nend" /linked_users/batch: post: operationId: importBatch @@ -4807,6 +5211,12 @@ paths: responses: '201': description: '' + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/LinkedUserResponse' tags: *ref_18 x-speakeasy-group: linked_users.batch x-codeSamples: @@ -4815,7 +5225,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.linkedUsers.batch.importBatch({ @@ -4833,25 +5245,31 @@ paths: - lang: python label: importBatch source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.linked_users.batch.import_batch(request={ + res = s.linked_users.batch.import_batch(request={ "linked_user_origin_ids": [ "", ], "alias": "", }) - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: importBatch source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -4859,25 +5277,27 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.CreateBatchLinkedUserDto{ LinkedUserOriginIds: []string{ "", }, - Alias: "", + Alias: gosdk.String(""), } ctx := context.Background() res, err := s.LinkedUsers.Batch.ImportBatch(ctx, request) if err != nil { log.Fatal(err) } - if res != nil { + if res.LinkedUserResponses != nil { // handle response } } - lang: ruby label: importBatch - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::CreateBatchLinkedUserDto.new(\n linked_user_origin_ids: [\n \"\",\n ],\n alias_: \"\",\n)\n \nres = s.linked_users_batch.import_batch(req)\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::CreateBatchLinkedUserDto.new(\n linked_user_origin_ids: [\n \"\",\n ],\n alias_: \"\",\n)\n \nres = s.linked_users_batch.import_batch(req)\n\nif ! res.linked_user_responses.nil?\n # handle response\nend" /linked_users/single: get: operationId: retrieveLinkedUser @@ -4891,6 +5311,10 @@ paths: responses: '200': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/LinkedUserResponse' tags: *ref_18 x-speakeasy-group: linked_users.single x-codeSamples: @@ -4899,7 +5323,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.linkedUsers.single.retrieve({ @@ -4914,40 +5340,48 @@ paths: - lang: python label: retrieveLinkedUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.linked_users.single.retrieve(id="") + res = s.linked_users.single.retrieve(id="") - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: retrieveLinkedUser source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var id string = "" ctx := context.Background() res, err := s.LinkedUsers.Single.Retrieve(ctx, id) if err != nil { log.Fatal(err) } - if res != nil { + if res.LinkedUserResponse != nil { // handle response } } - lang: ruby label: retrieveLinkedUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.linked_users_single.retrieve(id=\"\")\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.linked_users_single.retrieve(id=\"\")\n\nif ! res.linked_user_response.nil?\n # handle response\nend" /linked_users/fromRemoteId: get: operationId: remoteId @@ -4961,6 +5395,10 @@ paths: responses: '200': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/LinkedUserResponse' tags: *ref_18 x-speakeasy-group: linked_users.fromremoteid x-codeSamples: @@ -4969,7 +5407,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.linkedUsers.fromremoteid.remoteId({ @@ -4984,40 +5424,48 @@ paths: - lang: python label: remoteId source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.linked_users.fromremoteid.remote_id(remote_id="") + res = s.linked_users.fromremoteid.remote_id(remote_id="") - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: remoteId source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var remoteID string = "" ctx := context.Background() res, err := s.LinkedUsers.Fromremoteid.RemoteID(ctx, remoteID) if err != nil { log.Fatal(err) } - if res != nil { + if res.LinkedUserResponse != nil { // handle response } } - lang: ruby label: remoteId - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.linked_users_fromremoteid.remote_id(remote_id=\"\")\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.linked_users_fromremoteid.remote_id(remote_id=\"\")\n\nif ! res.linked_user_response.nil?\n # handle response\nend" /field_mappings/define: post: operationId: definitions @@ -5032,6 +5480,10 @@ paths: responses: '201': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/CustomFieldResponse' tags: &ref_19 - fieldMappings x-speakeasy-group: field_mappings.define @@ -5041,7 +5493,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.fieldMappings.define.definitions({ @@ -5059,25 +5513,31 @@ paths: - lang: python label: definitions source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.field_mappings.define.definitions(request={ + res = s.field_mappings.define.definitions(request={ "object_type_owner": "", "name": "", "description": "Universal heuristic matrices", "data_type": "decimal", }) - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: definitions source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -5085,25 +5545,27 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.DefineTargetFieldDto{ - ObjectTypeOwner: "", - Name: "", - Description: "Universal heuristic matrices", - DataType: "decimal", + ObjectTypeOwner: gosdk.String(""), + Name: gosdk.String(""), + Description: gosdk.String("Universal heuristic matrices"), + DataType: gosdk.String("decimal"), } ctx := context.Background() res, err := s.FieldMappings.Define.Definitions(ctx, request) if err != nil { log.Fatal(err) } - if res != nil { + if res.CustomFieldResponse != nil { // handle response } } - lang: ruby label: definitions - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::DefineTargetFieldDto.new(\n object_type_owner: \"\",\n name: \"\",\n description: \"Universal heuristic matrices\",\n data_type: \"decimal\",\n)\n \nres = s.field_mappings_define.definitions(req)\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::DefineTargetFieldDto.new(\n object_type_owner: \"\",\n name: \"\",\n description: \"Universal heuristic matrices\",\n data_type: \"decimal\",\n)\n \nres = s.field_mappings_define.definitions(req)\n\nif ! res.custom_field_response.nil?\n # handle response\nend" /field_mappings: post: operationId: defineCustomField @@ -5118,6 +5580,10 @@ paths: responses: '201': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/CustomFieldResponse' tags: *ref_19 x-codeSamples: - lang: typescript @@ -5125,7 +5591,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.fieldMappings.defineCustomField({ @@ -5146,12 +5614,15 @@ paths: - lang: python label: defineCustomField source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.field_mappings.define_custom_field(request={ + res = s.field_mappings.define_custom_field(request={ "object_type_owner": "", "name": "", "description": "Balanced multimedia policy", @@ -5161,13 +5632,16 @@ paths: "linked_user_id": "", }) - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: defineCustomField source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -5175,28 +5649,30 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.CustomFieldCreateDto{ - ObjectTypeOwner: "", - Name: "", - Description: "Balanced multimedia policy", - DataType: "point", - SourceCustomFieldID: "", - SourceProvider: "", - LinkedUserID: "", + ObjectTypeOwner: gosdk.String(""), + Name: gosdk.String(""), + Description: gosdk.String("Balanced multimedia policy"), + DataType: gosdk.String("point"), + SourceCustomFieldID: gosdk.String(""), + SourceProvider: gosdk.String(""), + LinkedUserID: gosdk.String(""), } ctx := context.Background() res, err := s.FieldMappings.DefineCustomField(ctx, request) if err != nil { log.Fatal(err) } - if res != nil { + if res.CustomFieldResponse != nil { // handle response } } - lang: ruby label: defineCustomField - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::CustomFieldCreateDto.new(\n object_type_owner: \"\",\n name: \"\",\n description: \"Balanced multimedia policy\",\n data_type: \"point\",\n source_custom_field_id: \"\",\n source_provider: \"\",\n linked_user_id: \"\",\n)\n \nres = s.field_mappings.define_custom_field(req)\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::CustomFieldCreateDto.new(\n object_type_owner: \"\",\n name: \"\",\n description: \"Balanced multimedia policy\",\n data_type: \"point\",\n source_custom_field_id: \"\",\n source_provider: \"\",\n linked_user_id: \"\",\n)\n \nres = s.field_mappings.define_custom_field(req)\n\nif ! res.custom_field_response.nil?\n # handle response\nend" /field_mappings/map: post: operationId: map @@ -5211,6 +5687,10 @@ paths: responses: '201': description: '' + content: + application/json: + schema: + $ref: '#/components/schemas/CustomFieldResponse' tags: *ref_19 x-speakeasy-group: field_mappings.map x-codeSamples: @@ -5219,7 +5699,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.fieldMappings.map.map({ @@ -5237,25 +5719,31 @@ paths: - lang: python label: map source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - s.field_mappings.map.map(request={ + res = s.field_mappings.map.map(request={ "attribute_id": "", "source_custom_field_id": "", "source_provider": "", "linked_user_id": "", }) - # Use the SDK ... + if res is not None: + # handle response + pass - lang: go label: map source: |- package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -5263,25 +5751,27 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) request := components.MapFieldToProviderDto{ - AttributeID: "", - SourceCustomFieldID: "", - SourceProvider: "", - LinkedUserID: "", + AttributeID: gosdk.String(""), + SourceCustomFieldID: gosdk.String(""), + SourceProvider: gosdk.String(""), + LinkedUserID: gosdk.String(""), } ctx := context.Background() res, err := s.FieldMappings.Map.Map(ctx, request) if err != nil { log.Fatal(err) } - if res != nil { + if res.CustomFieldResponse != nil { // handle response } } - lang: ruby label: map - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n\nreq = ::OpenApiSDK::Shared::MapFieldToProviderDto.new(\n attribute_id: \"\",\n source_custom_field_id: \"\",\n source_provider: \"\",\n linked_user_id: \"\",\n)\n \nres = s.field_mappings_map.map(req)\n\nif res.status_code == 200\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n\nreq = ::OpenApiSDK::Shared::MapFieldToProviderDto.new(\n attribute_id: \"\",\n source_custom_field_id: \"\",\n source_provider: \"\",\n linked_user_id: \"\",\n)\n \nres = s.field_mappings_map.map(req)\n\nif ! res.custom_field_response.nil?\n # handle response\nend" /passthrough: post: operationId: request @@ -5309,12 +5799,6 @@ paths: schema: $ref: '#/components/schemas/PassThroughRequestDto' responses: - '200': - description: '' - content: - application/json: - schema: - $ref: '#/components/schemas/PassThroughResponse' '201': description: '' content: @@ -5330,7 +5814,9 @@ paths: import { Panora } from "@panora/sdk"; import { Method } from "@panora/sdk/models/components"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.passthrough.request({ @@ -5351,10 +5837,13 @@ paths: - lang: python label: request source: |- + import os import panora_sdk from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.passthrough.request(integration_id="", linked_user_id="", vertical="", pass_through_request_dto={ @@ -5371,6 +5860,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -5378,7 +5868,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var integrationID string = "" var linkedUserID string = "" @@ -5387,7 +5879,7 @@ paths: passThroughRequestDto := components.PassThroughRequestDto{ Method: components.MethodGet, - Path: "/dev", + Path: gosdk.String("/dev"), } ctx := context.Background() res, err := s.Passthrough.Request(ctx, integrationID, linkedUserID, vertical, passThroughRequestDto) @@ -5400,7 +5892,7 @@ paths: } - lang: ruby label: request - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.passthrough.request(integration_id=\"\", linked_user_id=\"\", vertical=\"\", pass_through_request_dto=::OpenApiSDK::Shared::PassThroughRequestDto.new(\n method: ::OpenApiSDK::Shared::Method::GET,\n path: \"/dev\",\n ))\n\nif ! res.pass_through_response.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.passthrough.request(integration_id=\"\", linked_user_id=\"\", vertical=\"\", pass_through_request_dto=::OpenApiSDK::Shared::PassThroughRequestDto.new(\n method: ::OpenApiSDK::Shared::Method::GET,\n path: \"/dev\",\n ))\n\nif ! res.pass_through_response.nil?\n # handle response\nend" /hris/bankinfos: get: operationId: listHrisBankinfo @@ -5453,7 +5945,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.bankinfos.list({ @@ -5468,9 +5962,12 @@ paths: - lang: python label: listHrisBankinfo source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.bankinfos.list(x_connection_token="") @@ -5484,13 +5981,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Bankinfos.List(ctx, xConnectionToken, nil, nil, nil) @@ -5503,7 +6003,7 @@ paths: } - lang: ruby label: listHrisBankinfo - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_bankinfos.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_bankinfos.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/bankinfos/{id}: get: operationId: retrieveHrisBankinfo @@ -5543,7 +6043,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.bankinfos.retrieve({ @@ -5559,9 +6061,12 @@ paths: - lang: python label: retrieveHrisBankinfo source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.bankinfos.retrieve(x_connection_token="", id="") @@ -5575,13 +6080,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -5596,7 +6104,7 @@ paths: } - lang: ruby label: retrieveHrisBankinfo - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_bankinfos.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_bankinfo_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_bankinfos.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_bankinfo_output.nil?\n # handle response\nend" /hris/benefits: get: operationId: listHrisBenefit @@ -5649,7 +6157,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.benefits.list({ @@ -5664,9 +6174,12 @@ paths: - lang: python label: listHrisBenefit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.benefits.list(x_connection_token="") @@ -5680,13 +6193,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Benefits.List(ctx, xConnectionToken, nil, nil, nil) @@ -5699,7 +6215,7 @@ paths: } - lang: ruby label: listHrisBenefit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_benefits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_benefits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/benefits/{id}: get: operationId: retrieveHrisBenefit @@ -5739,7 +6255,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.benefits.retrieve({ @@ -5755,9 +6273,12 @@ paths: - lang: python label: retrieveHrisBenefit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.benefits.retrieve(x_connection_token="", id="") @@ -5771,13 +6292,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -5792,7 +6316,7 @@ paths: } - lang: ruby label: retrieveHrisBenefit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_benefits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_benefit_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_benefits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_benefit_output.nil?\n # handle response\nend" /hris/companies: get: operationId: listHrisCompanys @@ -5845,7 +6369,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.companies.list({ @@ -5860,9 +6386,12 @@ paths: - lang: python label: listHrisCompanys source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.companies.list(x_connection_token="") @@ -5876,13 +6405,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Companies.List(ctx, xConnectionToken, nil, nil, nil) @@ -5895,7 +6427,7 @@ paths: } - lang: ruby label: listHrisCompanys - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_companies.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_companies.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/dependents: get: operationId: listHrisDependents @@ -5948,7 +6480,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.dependents.list({ @@ -5963,9 +6497,12 @@ paths: - lang: python label: listHrisDependents source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.dependents.list(x_connection_token="") @@ -5979,13 +6516,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Dependents.List(ctx, xConnectionToken, nil, nil, nil) @@ -5998,7 +6538,7 @@ paths: } - lang: ruby label: listHrisDependents - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_dependents.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_dependents.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/dependents/{id}: get: operationId: retrieveHrisDependent @@ -6038,7 +6578,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.dependents.retrieve({ @@ -6054,9 +6596,12 @@ paths: - lang: python label: retrieveHrisDependent source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.dependents.retrieve(x_connection_token="", id="") @@ -6070,13 +6615,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -6091,7 +6639,7 @@ paths: } - lang: ruby label: retrieveHrisDependent - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_dependents.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_dependent_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_dependents.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_dependent_output.nil?\n # handle response\nend" /hris/employeepayrollruns: get: operationId: listHrisEmployeePayrollRun @@ -6145,7 +6693,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employeepayrollruns.list({ @@ -6160,9 +6710,12 @@ paths: - lang: python label: listHrisEmployeePayrollRun source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employeepayrollruns.list(x_connection_token="") @@ -6176,13 +6729,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Employeepayrollruns.List(ctx, xConnectionToken, nil, nil, nil) @@ -6195,7 +6751,7 @@ paths: } - lang: ruby label: listHrisEmployeePayrollRun - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employeepayrollruns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employeepayrollruns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/employeepayrollruns/{id}: get: operationId: retrieveHrisEmployeePayrollRun @@ -6235,7 +6791,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employeepayrollruns.retrieve({ @@ -6251,9 +6809,12 @@ paths: - lang: python label: retrieveHrisEmployeePayrollRun source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employeepayrollruns.retrieve(x_connection_token="", id="") @@ -6267,13 +6828,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -6288,7 +6852,7 @@ paths: } - lang: ruby label: retrieveHrisEmployeePayrollRun - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employeepayrollruns.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employeepayrollrun_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employeepayrollruns.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employeepayrollrun_output.nil?\n # handle response\nend" /hris/employees: get: operationId: listHrisEmployee @@ -6341,7 +6905,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employees.list({ @@ -6356,9 +6922,12 @@ paths: - lang: python label: listHrisEmployee source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employees.list(x_connection_token="") @@ -6372,13 +6941,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Employees.List(ctx, xConnectionToken, nil, nil, nil) @@ -6391,7 +6963,7 @@ paths: } - lang: ruby label: listHrisEmployee - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employees.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employees.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createHrisEmployee summary: Create Employees @@ -6430,7 +7002,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employees.create({ @@ -6446,9 +7020,12 @@ paths: - lang: python label: createHrisEmployee source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employees.create(x_connection_token="", unified_hris_employee_input={}) @@ -6462,6 +7039,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -6469,7 +7047,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedHrisEmployeeInput := components.UnifiedHrisEmployeeInput{} @@ -6484,7 +7064,7 @@ paths: } - lang: ruby label: createHrisEmployee - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employees.create(x_connection_token=\"\", unified_hris_employee_input=::OpenApiSDK::Shared::UnifiedHrisEmployeeInput.new(), remote_data=false)\n\nif ! res.unified_hris_employee_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employees.create(x_connection_token=\"\", unified_hris_employee_input=::OpenApiSDK::Shared::UnifiedHrisEmployeeInput.new(), remote_data=false)\n\nif ! res.unified_hris_employee_output.nil?\n # handle response\nend" /hris/employees/{id}: get: operationId: retrieveHrisEmployee @@ -6524,7 +7104,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employees.retrieve({ @@ -6540,9 +7122,12 @@ paths: - lang: python label: retrieveHrisEmployee source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employees.retrieve(x_connection_token="", id="") @@ -6556,13 +7141,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -6577,7 +7165,7 @@ paths: } - lang: ruby label: retrieveHrisEmployee - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employees.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employee_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employees.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employee_output.nil?\n # handle response\nend" /hris/employerbenefits: get: operationId: listHrisEmployerBenefit @@ -6631,7 +7219,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employerbenefits.list({ @@ -6646,9 +7236,12 @@ paths: - lang: python label: listHrisEmployerBenefit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employerbenefits.list(x_connection_token="") @@ -6662,13 +7255,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Employerbenefits.List(ctx, xConnectionToken, nil, nil, nil) @@ -6681,7 +7277,7 @@ paths: } - lang: ruby label: listHrisEmployerBenefit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employerbenefits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employerbenefits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/employerbenefits/{id}: get: operationId: retrieveHrisEmployerBenefit @@ -6721,7 +7317,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employerbenefits.retrieve({ @@ -6737,9 +7335,12 @@ paths: - lang: python label: retrieveHrisEmployerBenefit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employerbenefits.retrieve(x_connection_token="", id="") @@ -6753,13 +7354,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -6774,7 +7378,7 @@ paths: } - lang: ruby label: retrieveHrisEmployerBenefit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employerbenefits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employerbenefit_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employerbenefits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employerbenefit_output.nil?\n # handle response\nend" /hris/employments: get: operationId: listHrisEmployment @@ -6827,7 +7431,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employments.list({ @@ -6842,9 +7448,12 @@ paths: - lang: python label: listHrisEmployment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employments.list(x_connection_token="") @@ -6858,13 +7467,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Employments.List(ctx, xConnectionToken, nil, nil, nil) @@ -6877,7 +7489,7 @@ paths: } - lang: ruby label: listHrisEmployment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/employments/{id}: get: operationId: retrieveHrisEmployment @@ -6917,7 +7529,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.employments.retrieve({ @@ -6933,9 +7547,12 @@ paths: - lang: python label: retrieveHrisEmployment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.employments.retrieve(x_connection_token="", id="") @@ -6949,13 +7566,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -6970,7 +7590,7 @@ paths: } - lang: ruby label: retrieveHrisEmployment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_employments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_employments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_employment_output.nil?\n # handle response\nend" /hris/groups: get: operationId: listHrisGroup @@ -7023,7 +7643,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.groups.list({ @@ -7038,9 +7660,12 @@ paths: - lang: python label: listHrisGroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.groups.list(x_connection_token="") @@ -7054,13 +7679,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Groups.List(ctx, xConnectionToken, nil, nil, nil) @@ -7073,7 +7701,7 @@ paths: } - lang: ruby label: listHrisGroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_groups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_groups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/groups/{id}: get: operationId: retrieveHrisGroup @@ -7113,7 +7741,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.groups.retrieve({ @@ -7129,9 +7759,12 @@ paths: - lang: python label: retrieveHrisGroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.groups.retrieve(x_connection_token="", id="") @@ -7145,13 +7778,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -7166,7 +7802,7 @@ paths: } - lang: ruby label: retrieveHrisGroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_groups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_group_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_groups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_group_output.nil?\n # handle response\nend" /hris/locations: get: operationId: listHrisLocation @@ -7219,7 +7855,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.locations.list({ @@ -7234,9 +7872,12 @@ paths: - lang: python label: listHrisLocation source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.locations.list(x_connection_token="") @@ -7250,13 +7891,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Locations.List(ctx, xConnectionToken, nil, nil, nil) @@ -7269,7 +7913,7 @@ paths: } - lang: ruby label: listHrisLocation - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_locations.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_locations.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/locations/{id}: get: operationId: retrieveHrisLocation @@ -7309,7 +7953,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.locations.retrieve({ @@ -7325,9 +7971,12 @@ paths: - lang: python label: retrieveHrisLocation source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.locations.retrieve(x_connection_token="", id="") @@ -7341,13 +7990,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -7362,7 +8014,7 @@ paths: } - lang: ruby label: retrieveHrisLocation - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_locations.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_location_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_locations.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_location_output.nil?\n # handle response\nend" /hris/paygroups: get: operationId: listHrisPaygroup @@ -7415,7 +8067,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.paygroups.list({ @@ -7430,9 +8084,12 @@ paths: - lang: python label: listHrisPaygroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.paygroups.list(x_connection_token="") @@ -7446,13 +8103,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Paygroups.List(ctx, xConnectionToken, nil, nil, nil) @@ -7465,7 +8125,7 @@ paths: } - lang: ruby label: listHrisPaygroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_paygroups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_paygroups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/paygroups/{id}: get: operationId: retrieveHrisPaygroup @@ -7505,7 +8165,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.paygroups.retrieve({ @@ -7521,9 +8183,12 @@ paths: - lang: python label: retrieveHrisPaygroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.paygroups.retrieve(x_connection_token="", id="") @@ -7537,13 +8202,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -7558,7 +8226,7 @@ paths: } - lang: ruby label: retrieveHrisPaygroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_paygroups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_paygroup_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_paygroups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_paygroup_output.nil?\n # handle response\nend" /hris/payrollruns: get: operationId: listHrisPayrollRuns @@ -7611,7 +8279,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.payrollruns.list({ @@ -7626,9 +8296,12 @@ paths: - lang: python label: listHrisPayrollRuns source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.payrollruns.list(x_connection_token="") @@ -7642,13 +8315,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Payrollruns.List(ctx, xConnectionToken, nil, nil, nil) @@ -7661,7 +8337,7 @@ paths: } - lang: ruby label: listHrisPayrollRuns - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_payrollruns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_payrollruns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/timeoffs: get: operationId: listHrisTimeoffs @@ -7714,7 +8390,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.timeoffs.list({ @@ -7729,9 +8407,12 @@ paths: - lang: python label: listHrisTimeoffs source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.timeoffs.list(x_connection_token="") @@ -7745,13 +8426,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Timeoffs.List(ctx, xConnectionToken, nil, nil, nil) @@ -7764,7 +8448,7 @@ paths: } - lang: ruby label: listHrisTimeoffs - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_timeoffs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_timeoffs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createHrisTimeoff summary: Create Timeoffs @@ -7803,7 +8487,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.timeoffs.create({ @@ -7819,9 +8505,12 @@ paths: - lang: python label: createHrisTimeoff source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.timeoffs.create(x_connection_token="", unified_hris_timeoff_input={}) @@ -7835,6 +8524,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -7842,7 +8532,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedHrisTimeoffInput := components.UnifiedHrisTimeoffInput{} @@ -7857,7 +8549,7 @@ paths: } - lang: ruby label: createHrisTimeoff - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_timeoffs.create(x_connection_token=\"\", unified_hris_timeoff_input=::OpenApiSDK::Shared::UnifiedHrisTimeoffInput.new(), remote_data=false)\n\nif ! res.unified_hris_timeoff_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_timeoffs.create(x_connection_token=\"\", unified_hris_timeoff_input=::OpenApiSDK::Shared::UnifiedHrisTimeoffInput.new(), remote_data=false)\n\nif ! res.unified_hris_timeoff_output.nil?\n # handle response\nend" /hris/timeoffs/{id}: get: operationId: retrieveHrisTimeoff @@ -7897,7 +8589,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.timeoffs.retrieve({ @@ -7913,9 +8607,12 @@ paths: - lang: python label: retrieveHrisTimeoff source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.timeoffs.retrieve(x_connection_token="", id="") @@ -7929,13 +8626,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -7950,7 +8650,7 @@ paths: } - lang: ruby label: retrieveHrisTimeoff - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_timeoffs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_timeoff_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_timeoffs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_timeoff_output.nil?\n # handle response\nend" /hris/timeoffbalances: get: operationId: listHrisTimeoffbalance @@ -8003,7 +8703,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.timeoffbalances.list({ @@ -8018,9 +8720,12 @@ paths: - lang: python label: listHrisTimeoffbalance source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.timeoffbalances.list(x_connection_token="") @@ -8034,13 +8739,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Hris.Timeoffbalances.List(ctx, xConnectionToken, nil, nil, nil) @@ -8053,7 +8761,7 @@ paths: } - lang: ruby label: listHrisTimeoffbalance - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_timeoffbalances.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_timeoffbalances.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /hris/timeoffbalances/{id}: get: operationId: retrieveHrisTimeoffbalance @@ -8093,7 +8801,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.hris.timeoffbalances.retrieve({ @@ -8109,9 +8819,12 @@ paths: - lang: python label: retrieveHrisTimeoffbalance source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.hris.timeoffbalances.retrieve(x_connection_token="", id="") @@ -8125,13 +8838,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -8146,7 +8862,7 @@ paths: } - lang: ruby label: retrieveHrisTimeoffbalance - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.hris_timeoffbalances.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_timeoffbalance_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.hris_timeoffbalances.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_hris_timeoffbalance_output.nil?\n # handle response\nend" /marketingautomation/actions: get: operationId: listMarketingautomationAction @@ -8200,7 +8916,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.actions.list({ @@ -8215,9 +8933,12 @@ paths: - lang: python label: listMarketingautomationAction source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.actions.list(x_connection_token="") @@ -8231,13 +8952,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Actions.List(ctx, xConnectionToken, nil, nil, nil) @@ -8250,7 +8974,7 @@ paths: } - lang: ruby label: listMarketingautomationAction - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_actions.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_actions.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingautomationAction summary: Create Action @@ -8290,7 +9014,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.actions.create({ @@ -8306,9 +9032,12 @@ paths: - lang: python label: createMarketingautomationAction source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.actions.create(x_connection_token="", unified_marketingautomation_action_input={}) @@ -8322,6 +9051,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -8329,7 +9059,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationActionInput := components.UnifiedMarketingautomationActionInput{} @@ -8344,7 +9076,7 @@ paths: } - lang: ruby label: createMarketingautomationAction - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_actions.create(x_connection_token=\"\", unified_marketingautomation_action_input=::OpenApiSDK::Shared::UnifiedMarketingautomationActionInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_action_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_actions.create(x_connection_token=\"\", unified_marketingautomation_action_input=::OpenApiSDK::Shared::UnifiedMarketingautomationActionInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_action_output.nil?\n # handle response\nend" /marketingautomation/actions/{id}: get: operationId: retrieveMarketingautomationAction @@ -8385,7 +9117,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.actions.retrieve({ @@ -8401,9 +9135,12 @@ paths: - lang: python label: retrieveMarketingautomationAction source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.actions.retrieve(x_connection_token="", id="") @@ -8417,13 +9154,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -8438,7 +9178,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationAction - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_actions.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_action_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_actions.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_action_output.nil?\n # handle response\nend" /marketingautomation/automations: get: operationId: listMarketingautomationAutomation @@ -8492,7 +9232,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.automations.list({ @@ -8507,9 +9249,12 @@ paths: - lang: python label: listMarketingautomationAutomation source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.automations.list(x_connection_token="") @@ -8523,13 +9268,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Automations.List(ctx, xConnectionToken, nil, nil, nil) @@ -8542,7 +9290,7 @@ paths: } - lang: ruby label: listMarketingautomationAutomation - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_automations.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_automations.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingautomationAutomation summary: Create Automation @@ -8583,7 +9331,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.automations.create({ @@ -8599,9 +9349,12 @@ paths: - lang: python label: createMarketingautomationAutomation source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.automations.create(x_connection_token="", unified_marketingautomation_automation_input={}) @@ -8615,6 +9368,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -8622,7 +9376,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationAutomationInput := components.UnifiedMarketingautomationAutomationInput{} @@ -8637,7 +9393,7 @@ paths: } - lang: ruby label: createMarketingautomationAutomation - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_automations.create(x_connection_token=\"\", unified_marketingautomation_automation_input=::OpenApiSDK::Shared::UnifiedMarketingautomationAutomationInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_automation_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_automations.create(x_connection_token=\"\", unified_marketingautomation_automation_input=::OpenApiSDK::Shared::UnifiedMarketingautomationAutomationInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_automation_output.nil?\n # handle response\nend" /marketingautomation/automations/{id}: get: operationId: retrieveMarketingautomationAutomation @@ -8679,7 +9435,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.automations.retrieve({ @@ -8695,9 +9453,12 @@ paths: - lang: python label: retrieveMarketingautomationAutomation source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.automations.retrieve(x_connection_token="", id="") @@ -8711,13 +9472,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -8732,7 +9496,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationAutomation - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_automations.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_automation_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_automations.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_automation_output.nil?\n # handle response\nend" /marketingautomation/campaigns: get: operationId: listMarketingautomationCampaign @@ -8785,7 +9549,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.campaigns.list({ @@ -8800,9 +9566,12 @@ paths: - lang: python label: listMarketingautomationCampaign source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.campaigns.list(x_connection_token="") @@ -8816,13 +9585,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Campaigns.List(ctx, xConnectionToken, nil, nil, nil) @@ -8835,7 +9607,7 @@ paths: } - lang: ruby label: listMarketingautomationCampaign - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_campaigns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_campaigns.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingautomationCampaign summary: Create Campaign @@ -8875,7 +9647,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.campaigns.create({ @@ -8891,9 +9665,12 @@ paths: - lang: python label: createMarketingautomationCampaign source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.campaigns.create(x_connection_token="", unified_marketingautomation_campaign_input={}) @@ -8907,6 +9684,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -8914,7 +9692,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationCampaignInput := components.UnifiedMarketingautomationCampaignInput{} @@ -8929,7 +9709,7 @@ paths: } - lang: ruby label: createMarketingautomationCampaign - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_campaigns.create(x_connection_token=\"\", unified_marketingautomation_campaign_input=::OpenApiSDK::Shared::UnifiedMarketingautomationCampaignInput.new(), remote_data=false)\n\nif ! res.unified_campaign_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_campaigns.create(x_connection_token=\"\", unified_marketingautomation_campaign_input=::OpenApiSDK::Shared::UnifiedMarketingautomationCampaignInput.new(), remote_data=false)\n\nif ! res.unified_campaign_output.nil?\n # handle response\nend" /marketingautomation/campaigns/{id}: get: operationId: retrieveMarketingautomationCampaign @@ -8970,7 +9750,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.campaigns.retrieve({ @@ -8986,9 +9768,12 @@ paths: - lang: python label: retrieveMarketingautomationCampaign source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.campaigns.retrieve(x_connection_token="", id="") @@ -9002,13 +9787,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -9023,7 +9811,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationCampaign - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_campaigns.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_campaign_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_campaigns.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_campaign_output.nil?\n # handle response\nend" /marketingautomation/contacts: get: operationId: listMarketingAutomationContacts @@ -9077,7 +9865,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.contacts.list({ @@ -9092,9 +9882,12 @@ paths: - lang: python label: listMarketingAutomationContacts source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.contacts.list(x_connection_token="") @@ -9108,13 +9901,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Contacts.List(ctx, xConnectionToken, nil, nil, nil) @@ -9127,7 +9923,7 @@ paths: } - lang: ruby label: listMarketingAutomationContacts - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingAutomationContact summary: Create Contact @@ -9167,7 +9963,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.contacts.create({ @@ -9183,9 +9981,12 @@ paths: - lang: python label: createMarketingAutomationContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.contacts.create(x_connection_token="", unified_marketingautomation_contact_input={}) @@ -9199,6 +10000,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -9206,7 +10008,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationContactInput := components.UnifiedMarketingautomationContactInput{} @@ -9221,7 +10025,7 @@ paths: } - lang: ruby label: createMarketingAutomationContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_contacts.create(x_connection_token=\"\", unified_marketingautomation_contact_input=::OpenApiSDK::Shared::UnifiedMarketingautomationContactInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_contacts.create(x_connection_token=\"\", unified_marketingautomation_contact_input=::OpenApiSDK::Shared::UnifiedMarketingautomationContactInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_contact_output.nil?\n # handle response\nend" /marketingautomation/contacts/{id}: get: operationId: retrieveMarketingAutomationContact @@ -9262,7 +10066,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.contacts.retrieve({ @@ -9278,9 +10084,12 @@ paths: - lang: python label: retrieveMarketingAutomationContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.contacts.retrieve(x_connection_token="", id="") @@ -9294,13 +10103,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -9315,7 +10127,7 @@ paths: } - lang: ruby label: retrieveMarketingAutomationContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_contact_output.nil?\n # handle response\nend" /marketingautomation/emails: get: operationId: listMarketingautomationEmails @@ -9369,7 +10181,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.emails.list({ @@ -9384,9 +10198,12 @@ paths: - lang: python label: listMarketingautomationEmails source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.emails.list(x_connection_token="") @@ -9400,13 +10217,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Emails.List(ctx, xConnectionToken, nil, nil, nil) @@ -9419,7 +10239,7 @@ paths: } - lang: ruby label: listMarketingautomationEmails - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_emails.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_emails.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /marketingautomation/emails/{id}: get: operationId: retrieveMarketingautomationEmail @@ -9460,7 +10280,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.emails.retrieve({ @@ -9476,9 +10298,12 @@ paths: - lang: python label: retrieveMarketingautomationEmail source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.emails.retrieve(x_connection_token="", id="") @@ -9492,13 +10317,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -9513,7 +10341,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationEmail - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_emails.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_email_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_emails.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_email_output.nil?\n # handle response\nend" /marketingautomation/events: get: operationId: listMarketingAutomationEvents @@ -9567,7 +10395,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.events.list({ @@ -9582,9 +10412,12 @@ paths: - lang: python label: listMarketingAutomationEvents source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.events.list(x_connection_token="") @@ -9598,13 +10431,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Events.List(ctx, xConnectionToken, nil, nil, nil) @@ -9617,7 +10453,7 @@ paths: } - lang: ruby label: listMarketingAutomationEvents - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_events.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_events.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /marketingautomation/events/{id}: get: operationId: retrieveMarketingautomationEvent @@ -9658,7 +10494,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.events.retrieve({ @@ -9674,9 +10512,12 @@ paths: - lang: python label: retrieveMarketingautomationEvent source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.events.retrieve(x_connection_token="", id="") @@ -9690,13 +10531,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -9711,7 +10555,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationEvent - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_events.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_event_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_events.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_event_output.nil?\n # handle response\nend" /marketingautomation/lists: get: operationId: listMarketingautomationLists @@ -9765,7 +10609,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.lists.list({ @@ -9780,9 +10626,12 @@ paths: - lang: python label: listMarketingautomationLists source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.lists.list(x_connection_token="") @@ -9796,13 +10645,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Lists.List(ctx, xConnectionToken, nil, nil, nil) @@ -9815,7 +10667,7 @@ paths: } - lang: ruby label: listMarketingautomationLists - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_lists.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_lists.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingautomationList summary: Create Lists @@ -9855,7 +10707,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.lists.create({ @@ -9871,9 +10725,12 @@ paths: - lang: python label: createMarketingautomationList source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.lists.create(x_connection_token="", unified_marketingautomation_list_input={}) @@ -9887,6 +10744,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -9894,7 +10752,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationListInput := components.UnifiedMarketingautomationListInput{} @@ -9909,7 +10769,7 @@ paths: } - lang: ruby label: createMarketingautomationList - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_lists.create(x_connection_token=\"\", unified_marketingautomation_list_input=::OpenApiSDK::Shared::UnifiedMarketingautomationListInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_list_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_lists.create(x_connection_token=\"\", unified_marketingautomation_list_input=::OpenApiSDK::Shared::UnifiedMarketingautomationListInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_list_output.nil?\n # handle response\nend" /marketingautomation/lists/{id}: get: operationId: retrieveMarketingautomationList @@ -9950,7 +10810,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.lists.retrieve({ @@ -9966,9 +10828,12 @@ paths: - lang: python label: retrieveMarketingautomationList source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.lists.retrieve(x_connection_token="", id="") @@ -9982,13 +10847,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -10003,7 +10871,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationList - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_lists.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_list_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_lists.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_list_output.nil?\n # handle response\nend" /marketingautomation/messages: get: operationId: listMarketingautomationMessages @@ -10057,7 +10925,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.messages.list({ @@ -10072,9 +10942,12 @@ paths: - lang: python label: listMarketingautomationMessages source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.messages.list(x_connection_token="") @@ -10088,13 +10961,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Messages.List(ctx, xConnectionToken, nil, nil, nil) @@ -10107,7 +10983,7 @@ paths: } - lang: ruby label: listMarketingautomationMessages - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_messages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_messages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /marketingautomation/messages/{id}: get: operationId: retrieveMarketingautomationMessage @@ -10148,7 +11024,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.messages.retrieve({ @@ -10164,9 +11042,12 @@ paths: - lang: python label: retrieveMarketingautomationMessage source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.messages.retrieve(x_connection_token="", id="") @@ -10180,13 +11061,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -10201,7 +11085,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationMessage - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_messages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_message_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_messages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_message_output.nil?\n # handle response\nend" /marketingautomation/templates: get: operationId: listMarketingautomationTemplates @@ -10255,7 +11139,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.templates.list({ @@ -10270,9 +11156,12 @@ paths: - lang: python label: listMarketingautomationTemplates source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.templates.list(x_connection_token="") @@ -10286,13 +11175,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Templates.List(ctx, xConnectionToken, nil, nil, nil) @@ -10305,7 +11197,7 @@ paths: } - lang: ruby label: listMarketingautomationTemplates - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_templates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_templates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createMarketingautomationTemplate summary: Create Template @@ -10345,7 +11237,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.templates.create({ @@ -10361,9 +11255,12 @@ paths: - lang: python label: createMarketingautomationTemplate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.templates.create(x_connection_token="", unified_marketingautomation_template_input={}) @@ -10377,6 +11274,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -10384,7 +11282,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedMarketingautomationTemplateInput := components.UnifiedMarketingautomationTemplateInput{} @@ -10399,7 +11299,7 @@ paths: } - lang: ruby label: createMarketingautomationTemplate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_templates.create(x_connection_token=\"\", unified_marketingautomation_template_input=::OpenApiSDK::Shared::UnifiedMarketingautomationTemplateInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_template_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_templates.create(x_connection_token=\"\", unified_marketingautomation_template_input=::OpenApiSDK::Shared::UnifiedMarketingautomationTemplateInput.new(), remote_data=false)\n\nif ! res.unified_marketingautomation_template_output.nil?\n # handle response\nend" /marketingautomation/templates/{id}: get: operationId: retrieveMarketingautomationTemplate @@ -10440,7 +11340,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.templates.retrieve({ @@ -10456,9 +11358,12 @@ paths: - lang: python label: retrieveMarketingautomationTemplate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.templates.retrieve(x_connection_token="", id="") @@ -10472,13 +11377,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -10493,7 +11401,7 @@ paths: } - lang: ruby label: retrieveMarketingautomationTemplate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_templates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_template_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_templates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_template_output.nil?\n # handle response\nend" /marketingautomation/users: get: operationId: listMarketingAutomationUsers @@ -10547,7 +11455,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.users.list({ @@ -10562,9 +11472,12 @@ paths: - lang: python label: listMarketingAutomationUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.users.list(x_connection_token="") @@ -10578,13 +11491,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Marketingautomation.Users.List(ctx, xConnectionToken, nil, nil, nil) @@ -10597,7 +11513,7 @@ paths: } - lang: ruby label: listMarketingAutomationUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /marketingautomation/users/{id}: get: operationId: retrieveMarketingAutomationUser @@ -10638,7 +11554,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.marketingautomation.users.retrieve({ @@ -10654,9 +11572,12 @@ paths: - lang: python label: retrieveMarketingAutomationUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.marketingautomation.users.retrieve(x_connection_token="", id="") @@ -10670,13 +11591,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -10691,7 +11615,7 @@ paths: } - lang: ruby label: retrieveMarketingAutomationUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.marketingautomation_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_user_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.marketingautomation_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_marketingautomation_user_output.nil?\n # handle response\nend" /ats/activities: get: operationId: listAtsActivity @@ -10744,7 +11668,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.activities.list({ @@ -10759,9 +11685,12 @@ paths: - lang: python label: listAtsActivity source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.activities.list(x_connection_token="") @@ -10775,13 +11704,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Activities.List(ctx, xConnectionToken, nil, nil, nil) @@ -10794,7 +11726,7 @@ paths: } - lang: ruby label: listAtsActivity - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_activities.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_activities.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAtsActivity summary: Create Activities @@ -10833,14 +11765,14 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.activities.create({ xConnectionToken: "", - unifiedAtsActivityInput: { - fieldMappings: {}, - }, + unifiedAtsActivityInput: {}, }); // Handle the result @@ -10851,14 +11783,15 @@ paths: - lang: python label: createAtsActivity source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.ats.activities.create(x_connection_token="", unified_ats_activity_input={ - "field_mappings": {}, - }) + res = s.ats.activities.create(x_connection_token="", unified_ats_activity_input={}) if res is not None: # handle response @@ -10869,6 +11802,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -10876,12 +11810,12 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" - unifiedAtsActivityInput := components.UnifiedAtsActivityInput{ - FieldMappings: components.UnifiedAtsActivityInputFieldMappings{}, - } + unifiedAtsActivityInput := components.UnifiedAtsActivityInput{} ctx := context.Background() res, err := s.Ats.Activities.Create(ctx, xConnectionToken, unifiedAtsActivityInput, nil) if err != nil { @@ -10893,7 +11827,7 @@ paths: } - lang: ruby label: createAtsActivity - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_activities.create(x_connection_token=\"\", unified_ats_activity_input=::OpenApiSDK::Shared::UnifiedAtsActivityInput.new(\n field_mappings: ::OpenApiSDK::Shared::UnifiedAtsActivityInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ats_activity_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_activities.create(x_connection_token=\"\", unified_ats_activity_input=::OpenApiSDK::Shared::UnifiedAtsActivityInput.new(), remote_data=false)\n\nif ! res.unified_ats_activity_output.nil?\n # handle response\nend" /ats/activities/{id}: get: operationId: retrieveAtsActivity @@ -10933,7 +11867,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.activities.retrieve({ @@ -10949,9 +11885,12 @@ paths: - lang: python label: retrieveAtsActivity source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.activities.retrieve(x_connection_token="", id="") @@ -10965,13 +11904,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -10986,7 +11928,7 @@ paths: } - lang: ruby label: retrieveAtsActivity - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_activities.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_activity_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_activities.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_activity_output.nil?\n # handle response\nend" /ats/applications: get: operationId: listAtsApplication @@ -11039,7 +11981,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.applications.list({ @@ -11054,9 +11998,12 @@ paths: - lang: python label: listAtsApplication source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.applications.list(x_connection_token="") @@ -11070,13 +12017,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Applications.List(ctx, xConnectionToken, nil, nil, nil) @@ -11089,7 +12039,7 @@ paths: } - lang: ruby label: listAtsApplication - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_applications.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_applications.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAtsApplication summary: Create Applications @@ -11128,14 +12078,14 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.applications.create({ xConnectionToken: "", - unifiedAtsApplicationInput: { - fieldMappings: {}, - }, + unifiedAtsApplicationInput: {}, }); // Handle the result @@ -11146,14 +12096,15 @@ paths: - lang: python label: createAtsApplication source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.ats.applications.create(x_connection_token="", unified_ats_application_input={ - "field_mappings": {}, - }) + res = s.ats.applications.create(x_connection_token="", unified_ats_application_input={}) if res is not None: # handle response @@ -11164,6 +12115,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -11171,12 +12123,12 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" - unifiedAtsApplicationInput := components.UnifiedAtsApplicationInput{ - FieldMappings: components.UnifiedAtsApplicationInputFieldMappings{}, - } + unifiedAtsApplicationInput := components.UnifiedAtsApplicationInput{} ctx := context.Background() res, err := s.Ats.Applications.Create(ctx, xConnectionToken, unifiedAtsApplicationInput, nil) if err != nil { @@ -11188,7 +12140,7 @@ paths: } - lang: ruby label: createAtsApplication - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_applications.create(x_connection_token=\"\", unified_ats_application_input=::OpenApiSDK::Shared::UnifiedAtsApplicationInput.new(\n field_mappings: ::OpenApiSDK::Shared::UnifiedAtsApplicationInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ats_application_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_applications.create(x_connection_token=\"\", unified_ats_application_input=::OpenApiSDK::Shared::UnifiedAtsApplicationInput.new(), remote_data=false)\n\nif ! res.unified_ats_application_output.nil?\n # handle response\nend" /ats/applications/{id}: get: operationId: retrieveAtsApplication @@ -11228,7 +12180,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.applications.retrieve({ @@ -11244,9 +12198,12 @@ paths: - lang: python label: retrieveAtsApplication source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.applications.retrieve(x_connection_token="", id="") @@ -11260,13 +12217,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -11281,7 +12241,7 @@ paths: } - lang: ruby label: retrieveAtsApplication - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_applications.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_application_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_applications.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_application_output.nil?\n # handle response\nend" /ats/attachments: get: operationId: listAtsAttachment @@ -11334,7 +12294,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.attachments.list({ @@ -11349,9 +12311,12 @@ paths: - lang: python label: listAtsAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.attachments.list(x_connection_token="") @@ -11365,13 +12330,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Attachments.List(ctx, xConnectionToken, nil, nil, nil) @@ -11384,7 +12352,7 @@ paths: } - lang: ruby label: listAtsAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAtsAttachment summary: Create Attachments @@ -11423,14 +12391,14 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.attachments.create({ xConnectionToken: "", - unifiedAtsAttachmentInput: { - fieldMappings: {}, - }, + unifiedAtsAttachmentInput: {}, }); // Handle the result @@ -11441,14 +12409,15 @@ paths: - lang: python label: createAtsAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.ats.attachments.create(x_connection_token="", unified_ats_attachment_input={ - "field_mappings": {}, - }) + res = s.ats.attachments.create(x_connection_token="", unified_ats_attachment_input={}) if res is not None: # handle response @@ -11459,6 +12428,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -11466,12 +12436,12 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" - unifiedAtsAttachmentInput := components.UnifiedAtsAttachmentInput{ - FieldMappings: components.UnifiedAtsAttachmentInputFieldMappings{}, - } + unifiedAtsAttachmentInput := components.UnifiedAtsAttachmentInput{} ctx := context.Background() res, err := s.Ats.Attachments.Create(ctx, xConnectionToken, unifiedAtsAttachmentInput, nil) if err != nil { @@ -11483,7 +12453,7 @@ paths: } - lang: ruby label: createAtsAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_attachments.create(x_connection_token=\"\", unified_ats_attachment_input=::OpenApiSDK::Shared::UnifiedAtsAttachmentInput.new(\n field_mappings: ::OpenApiSDK::Shared::UnifiedAtsAttachmentInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ats_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_attachments.create(x_connection_token=\"\", unified_ats_attachment_input=::OpenApiSDK::Shared::UnifiedAtsAttachmentInput.new(), remote_data=false)\n\nif ! res.unified_ats_attachment_output.nil?\n # handle response\nend" /ats/attachments/{id}: get: operationId: retrieveAtsAttachment @@ -11523,7 +12493,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.attachments.retrieve({ @@ -11539,9 +12511,12 @@ paths: - lang: python label: retrieveAtsAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.attachments.retrieve(x_connection_token="", id="") @@ -11555,13 +12530,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -11576,7 +12554,7 @@ paths: } - lang: ruby label: retrieveAtsAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_attachment_output.nil?\n # handle response\nend" /ats/candidates: get: operationId: listAtsCandidate @@ -11629,7 +12607,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.candidates.list({ @@ -11644,9 +12624,12 @@ paths: - lang: python label: listAtsCandidate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.candidates.list(x_connection_token="") @@ -11660,13 +12643,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Candidates.List(ctx, xConnectionToken, nil, nil, nil) @@ -11679,7 +12665,7 @@ paths: } - lang: ruby label: listAtsCandidate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_candidates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_candidates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAtsCandidate summary: Create Candidates @@ -11718,14 +12704,14 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.candidates.create({ xConnectionToken: "", - unifiedAtsCandidateInput: { - fieldMappings: {}, - }, + unifiedAtsCandidateInput: {}, }); // Handle the result @@ -11736,14 +12722,15 @@ paths: - lang: python label: createAtsCandidate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.ats.candidates.create(x_connection_token="", unified_ats_candidate_input={ - "field_mappings": {}, - }) + res = s.ats.candidates.create(x_connection_token="", unified_ats_candidate_input={}) if res is not None: # handle response @@ -11754,6 +12741,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -11761,12 +12749,12 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" - unifiedAtsCandidateInput := components.UnifiedAtsCandidateInput{ - FieldMappings: components.UnifiedAtsCandidateInputFieldMappings{}, - } + unifiedAtsCandidateInput := components.UnifiedAtsCandidateInput{} ctx := context.Background() res, err := s.Ats.Candidates.Create(ctx, xConnectionToken, unifiedAtsCandidateInput, nil) if err != nil { @@ -11778,7 +12766,7 @@ paths: } - lang: ruby label: createAtsCandidate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_candidates.create(x_connection_token=\"\", unified_ats_candidate_input=::OpenApiSDK::Shared::UnifiedAtsCandidateInput.new(\n field_mappings: ::OpenApiSDK::Shared::UnifiedAtsCandidateInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ats_candidate_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_candidates.create(x_connection_token=\"\", unified_ats_candidate_input=::OpenApiSDK::Shared::UnifiedAtsCandidateInput.new(), remote_data=false)\n\nif ! res.unified_ats_candidate_output.nil?\n # handle response\nend" /ats/candidates/{id}: get: operationId: retrieveAtsCandidate @@ -11818,7 +12806,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.candidates.retrieve({ @@ -11834,9 +12824,12 @@ paths: - lang: python label: retrieveAtsCandidate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.candidates.retrieve(x_connection_token="", id="") @@ -11850,13 +12843,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -11871,7 +12867,7 @@ paths: } - lang: ruby label: retrieveAtsCandidate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_candidates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_candidate_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_candidates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_candidate_output.nil?\n # handle response\nend" /ats/departments: get: operationId: listAtsDepartments @@ -11924,7 +12920,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.departments.list({ @@ -11939,9 +12937,12 @@ paths: - lang: python label: listAtsDepartments source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.departments.list(x_connection_token="") @@ -11955,13 +12956,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Departments.List(ctx, xConnectionToken, nil, nil, nil) @@ -11974,7 +12978,7 @@ paths: } - lang: ruby label: listAtsDepartments - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_departments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_departments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/departments/{id}: get: operationId: retrieveAtsDepartment @@ -12014,7 +13018,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.departments.retrieve({ @@ -12030,9 +13036,12 @@ paths: - lang: python label: retrieveAtsDepartment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.departments.retrieve(x_connection_token="", id="") @@ -12046,13 +13055,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -12067,7 +13079,7 @@ paths: } - lang: ruby label: retrieveAtsDepartment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_departments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_department_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_departments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_department_output.nil?\n # handle response\nend" /ats/interviews: get: operationId: listAtsInterview @@ -12120,7 +13132,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.interviews.list({ @@ -12135,9 +13149,12 @@ paths: - lang: python label: listAtsInterview source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.interviews.list(x_connection_token="") @@ -12151,13 +13168,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Interviews.List(ctx, xConnectionToken, nil, nil, nil) @@ -12170,7 +13190,7 @@ paths: } - lang: ruby label: listAtsInterview - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_interviews.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_interviews.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAtsInterview summary: Create Interviews @@ -12209,14 +13229,14 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.interviews.create({ xConnectionToken: "", - unifiedAtsInterviewInput: { - fieldMappings: {}, - }, + unifiedAtsInterviewInput: {}, }); // Handle the result @@ -12227,14 +13247,15 @@ paths: - lang: python label: createAtsInterview source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) - res = s.ats.interviews.create(x_connection_token="", unified_ats_interview_input={ - "field_mappings": {}, - }) + res = s.ats.interviews.create(x_connection_token="", unified_ats_interview_input={}) if res is not None: # handle response @@ -12245,6 +13266,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -12252,12 +13274,12 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" - unifiedAtsInterviewInput := components.UnifiedAtsInterviewInput{ - FieldMappings: components.UnifiedAtsInterviewInputFieldMappings{}, - } + unifiedAtsInterviewInput := components.UnifiedAtsInterviewInput{} ctx := context.Background() res, err := s.Ats.Interviews.Create(ctx, xConnectionToken, unifiedAtsInterviewInput, nil) if err != nil { @@ -12269,7 +13291,7 @@ paths: } - lang: ruby label: createAtsInterview - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_interviews.create(x_connection_token=\"\", unified_ats_interview_input=::OpenApiSDK::Shared::UnifiedAtsInterviewInput.new(\n field_mappings: ::OpenApiSDK::Shared::UnifiedAtsInterviewInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ats_interview_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_interviews.create(x_connection_token=\"\", unified_ats_interview_input=::OpenApiSDK::Shared::UnifiedAtsInterviewInput.new(), remote_data=false)\n\nif ! res.unified_ats_interview_output.nil?\n # handle response\nend" /ats/interviews/{id}: get: operationId: retrieveAtsInterview @@ -12309,7 +13331,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.interviews.retrieve({ @@ -12325,9 +13349,12 @@ paths: - lang: python label: retrieveAtsInterview source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.interviews.retrieve(x_connection_token="", id="") @@ -12341,13 +13368,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -12362,7 +13392,7 @@ paths: } - lang: ruby label: retrieveAtsInterview - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_interviews.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_interview_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_interviews.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_interview_output.nil?\n # handle response\nend" /ats/jobinterviewstages: get: operationId: listAtsJobInterviewStage @@ -12416,7 +13446,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.jobinterviewstages.list({ @@ -12431,9 +13463,12 @@ paths: - lang: python label: listAtsJobInterviewStage source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.jobinterviewstages.list(x_connection_token="") @@ -12447,13 +13482,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Jobinterviewstages.List(ctx, xConnectionToken, nil, nil, nil) @@ -12466,7 +13504,7 @@ paths: } - lang: ruby label: listAtsJobInterviewStage - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_jobinterviewstages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_jobinterviewstages.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/jobinterviewstages/{id}: get: operationId: retrieveAtsJobInterviewStage @@ -12506,7 +13544,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.jobinterviewstages.retrieve({ @@ -12522,9 +13562,12 @@ paths: - lang: python label: retrieveAtsJobInterviewStage source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.jobinterviewstages.retrieve(x_connection_token="", id="") @@ -12538,13 +13581,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -12559,7 +13605,7 @@ paths: } - lang: ruby label: retrieveAtsJobInterviewStage - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_jobinterviewstages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_jobinterviewstage_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_jobinterviewstages.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_jobinterviewstage_output.nil?\n # handle response\nend" /ats/jobs: get: operationId: listAtsJob @@ -12612,7 +13658,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.jobs.list({ @@ -12627,9 +13675,12 @@ paths: - lang: python label: listAtsJob source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.jobs.list(x_connection_token="") @@ -12643,13 +13694,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Jobs.List(ctx, xConnectionToken, nil, nil, nil) @@ -12662,7 +13716,7 @@ paths: } - lang: ruby label: listAtsJob - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_jobs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_jobs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/jobs/{id}: get: operationId: retrieveAtsJob @@ -12702,7 +13756,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.jobs.retrieve({ @@ -12718,9 +13774,12 @@ paths: - lang: python label: retrieveAtsJob source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.jobs.retrieve(x_connection_token="", id="") @@ -12734,13 +13793,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -12755,7 +13817,7 @@ paths: } - lang: ruby label: retrieveAtsJob - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_jobs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_job_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_jobs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_job_output.nil?\n # handle response\nend" /ats/offers: get: operationId: listAtsOffer @@ -12808,7 +13870,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.offers.list({ @@ -12823,9 +13887,12 @@ paths: - lang: python label: listAtsOffer source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.offers.list(x_connection_token="") @@ -12839,13 +13906,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Offers.List(ctx, xConnectionToken, nil, nil, nil) @@ -12858,7 +13928,7 @@ paths: } - lang: ruby label: listAtsOffer - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_offers.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_offers.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/offers/{id}: get: operationId: retrieveAtsOffer @@ -12898,7 +13968,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.offers.retrieve({ @@ -12914,9 +13986,12 @@ paths: - lang: python label: retrieveAtsOffer source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.offers.retrieve(x_connection_token="", id="") @@ -12930,13 +14005,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -12951,7 +14029,7 @@ paths: } - lang: ruby label: retrieveAtsOffer - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_offers.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_offer_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_offers.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_offer_output.nil?\n # handle response\nend" /ats/offices: get: operationId: listAtsOffice @@ -13004,7 +14082,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.offices.list({ @@ -13019,9 +14099,12 @@ paths: - lang: python label: listAtsOffice source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.offices.list(x_connection_token="") @@ -13035,13 +14118,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Offices.List(ctx, xConnectionToken, nil, nil, nil) @@ -13054,7 +14140,7 @@ paths: } - lang: ruby label: listAtsOffice - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_offices.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_offices.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/offices/{id}: get: operationId: retrieveAtsOffice @@ -13094,7 +14180,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.offices.retrieve({ @@ -13110,9 +14198,12 @@ paths: - lang: python label: retrieveAtsOffice source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.offices.retrieve(x_connection_token="", id="") @@ -13126,13 +14217,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -13147,7 +14241,7 @@ paths: } - lang: ruby label: retrieveAtsOffice - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_offices.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_office_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_offices.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_office_output.nil?\n # handle response\nend" /ats/rejectreasons: get: operationId: listAtsRejectReasons @@ -13200,7 +14294,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.rejectreasons.list({ @@ -13215,9 +14311,12 @@ paths: - lang: python label: listAtsRejectReasons source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.rejectreasons.list(x_connection_token="") @@ -13231,13 +14330,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Rejectreasons.List(ctx, xConnectionToken, nil, nil, nil) @@ -13250,7 +14352,7 @@ paths: } - lang: ruby label: listAtsRejectReasons - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_rejectreasons.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_rejectreasons.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/rejectreasons/{id}: get: operationId: retrieveAtsRejectReason @@ -13290,7 +14392,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.rejectreasons.retrieve({ @@ -13306,9 +14410,12 @@ paths: - lang: python label: retrieveAtsRejectReason source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.rejectreasons.retrieve(x_connection_token="", id="") @@ -13322,13 +14429,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -13343,7 +14453,7 @@ paths: } - lang: ruby label: retrieveAtsRejectReason - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_rejectreasons.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_rejectreason_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_rejectreasons.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_rejectreason_output.nil?\n # handle response\nend" /ats/scorecards: get: operationId: listAtsScorecard @@ -13396,7 +14506,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.scorecards.list({ @@ -13411,9 +14523,12 @@ paths: - lang: python label: listAtsScorecard source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.scorecards.list(x_connection_token="") @@ -13427,13 +14542,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Scorecards.List(ctx, xConnectionToken, nil, nil, nil) @@ -13446,7 +14564,7 @@ paths: } - lang: ruby label: listAtsScorecard - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_scorecards.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_scorecards.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/scorecards/{id}: get: operationId: retrieveAtsScorecard @@ -13486,7 +14604,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.scorecards.retrieve({ @@ -13502,9 +14622,12 @@ paths: - lang: python label: retrieveAtsScorecard source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.scorecards.retrieve(x_connection_token="", id="") @@ -13518,13 +14641,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -13539,7 +14665,7 @@ paths: } - lang: ruby label: retrieveAtsScorecard - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_scorecards.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_scorecard_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_scorecards.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_scorecard_output.nil?\n # handle response\nend" /ats/tags: get: operationId: listAtsTags @@ -13592,7 +14718,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.tags.list({ @@ -13607,9 +14735,12 @@ paths: - lang: python label: listAtsTags source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.tags.list(x_connection_token="") @@ -13623,13 +14754,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Tags.List(ctx, xConnectionToken, nil, nil, nil) @@ -13642,7 +14776,7 @@ paths: } - lang: ruby label: listAtsTags - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_tags.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_tags.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/tags/{id}: get: operationId: retrieveAtsTag @@ -13682,7 +14816,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.tags.retrieve({ @@ -13698,9 +14834,12 @@ paths: - lang: python label: retrieveAtsTag source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.tags.retrieve(x_connection_token="", id="") @@ -13714,13 +14853,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -13735,7 +14877,7 @@ paths: } - lang: ruby label: retrieveAtsTag - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_tags.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_tag_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_tags.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_tag_output.nil?\n # handle response\nend" /ats/users: get: operationId: listAtsUsers @@ -13788,7 +14930,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.users.list({ @@ -13803,9 +14947,12 @@ paths: - lang: python label: listAtsUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.users.list(x_connection_token="") @@ -13819,13 +14966,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Users.List(ctx, xConnectionToken, nil, nil, nil) @@ -13838,7 +14988,7 @@ paths: } - lang: ruby label: listAtsUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/users/{id}: get: operationId: retrieveAtsUser @@ -13878,7 +15028,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.users.retrieve({ @@ -13894,9 +15046,12 @@ paths: - lang: python label: retrieveAtsUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.users.retrieve(x_connection_token="", id="") @@ -13910,13 +15065,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -13931,7 +15089,7 @@ paths: } - lang: ruby label: retrieveAtsUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_user_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_user_output.nil?\n # handle response\nend" /ats/eeocs: get: operationId: listAtsEeocs @@ -13984,7 +15142,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.eeocs.list({ @@ -13999,9 +15159,12 @@ paths: - lang: python label: listAtsEeocs source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.eeocs.list(x_connection_token="") @@ -14015,13 +15178,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ats.Eeocs.List(ctx, xConnectionToken, nil, nil, nil) @@ -14034,7 +15200,7 @@ paths: } - lang: ruby label: listAtsEeocs - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_eeocs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_eeocs.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /ats/eeocs/{id}: get: operationId: retrieveAtsEeocs @@ -14074,7 +15240,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ats.eeocs.retrieve({ @@ -14090,9 +15258,12 @@ paths: - lang: python label: retrieveAtsEeocs source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ats.eeocs.retrieve(x_connection_token="", id="") @@ -14106,13 +15277,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -14127,7 +15301,7 @@ paths: } - lang: ruby label: retrieveAtsEeocs - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ats_eeocs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_eeocs_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ats_eeocs.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ats_eeocs_output.nil?\n # handle response\nend" /accounting/accounts: get: operationId: listAccountingAccounts @@ -14180,7 +15354,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.accounts.list({ @@ -14195,9 +15371,12 @@ paths: - lang: python label: listAccountingAccounts source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.accounts.list(x_connection_token="") @@ -14211,13 +15390,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Accounts.List(ctx, xConnectionToken, nil, nil, nil) @@ -14230,7 +15412,7 @@ paths: } - lang: ruby label: listAccountingAccounts - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_accounts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_accounts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingAccount summary: Create Accounts @@ -14269,7 +15451,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.accounts.create({ @@ -14285,9 +15469,12 @@ paths: - lang: python label: createAccountingAccount source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.accounts.create(x_connection_token="", unified_accounting_account_input={}) @@ -14301,6 +15488,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -14308,7 +15496,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingAccountInput := components.UnifiedAccountingAccountInput{} @@ -14323,7 +15513,7 @@ paths: } - lang: ruby label: createAccountingAccount - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_accounts.create(x_connection_token=\"\", unified_accounting_account_input=::OpenApiSDK::Shared::UnifiedAccountingAccountInput.new(), remote_data=false)\n\nif ! res.unified_accounting_account_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_accounts.create(x_connection_token=\"\", unified_accounting_account_input=::OpenApiSDK::Shared::UnifiedAccountingAccountInput.new(), remote_data=false)\n\nif ! res.unified_accounting_account_output.nil?\n # handle response\nend" /accounting/accounts/{id}: get: operationId: retrieveAccountingAccount @@ -14363,7 +15553,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.accounts.retrieve({ @@ -14379,9 +15571,12 @@ paths: - lang: python label: retrieveAccountingAccount source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.accounts.retrieve(x_connection_token="", id="") @@ -14395,13 +15590,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -14416,7 +15614,7 @@ paths: } - lang: ruby label: retrieveAccountingAccount - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_accounts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_account_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_accounts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_account_output.nil?\n # handle response\nend" /accounting/addresses: get: operationId: listAccountingAddress @@ -14469,7 +15667,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.addresses.list({ @@ -14484,9 +15684,12 @@ paths: - lang: python label: listAccountingAddress source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.addresses.list(x_connection_token="") @@ -14500,13 +15703,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Addresses.List(ctx, xConnectionToken, nil, nil, nil) @@ -14519,7 +15725,7 @@ paths: } - lang: ruby label: listAccountingAddress - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_addresses.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_addresses.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/addresses/{id}: get: operationId: retrieveAccountingAddress @@ -14559,7 +15765,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.addresses.retrieve({ @@ -14575,9 +15783,12 @@ paths: - lang: python label: retrieveAccountingAddress source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.addresses.retrieve(x_connection_token="", id="") @@ -14591,13 +15802,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -14612,7 +15826,7 @@ paths: } - lang: ruby label: retrieveAccountingAddress - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_addresses.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_address_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_addresses.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_address_output.nil?\n # handle response\nend" /accounting/attachments: get: operationId: listAccountingAttachments @@ -14666,7 +15880,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.attachments.list({ @@ -14681,9 +15897,12 @@ paths: - lang: python label: listAccountingAttachments source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.attachments.list(x_connection_token="") @@ -14697,13 +15916,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Attachments.List(ctx, xConnectionToken, nil, nil, nil) @@ -14716,7 +15938,7 @@ paths: } - lang: ruby label: listAccountingAttachments - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingAttachment summary: Create Attachments @@ -14755,7 +15977,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.attachments.create({ @@ -14771,9 +15995,12 @@ paths: - lang: python label: createAccountingAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.attachments.create(x_connection_token="", unified_accounting_attachment_input={}) @@ -14787,6 +16014,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -14794,7 +16022,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingAttachmentInput := components.UnifiedAccountingAttachmentInput{} @@ -14809,7 +16039,7 @@ paths: } - lang: ruby label: createAccountingAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_attachments.create(x_connection_token=\"\", unified_accounting_attachment_input=::OpenApiSDK::Shared::UnifiedAccountingAttachmentInput.new(), remote_data=false)\n\nif ! res.unified_accounting_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_attachments.create(x_connection_token=\"\", unified_accounting_attachment_input=::OpenApiSDK::Shared::UnifiedAccountingAttachmentInput.new(), remote_data=false)\n\nif ! res.unified_accounting_attachment_output.nil?\n # handle response\nend" /accounting/attachments/{id}: get: operationId: retrieveAccountingAttachment @@ -14849,7 +16079,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.attachments.retrieve({ @@ -14865,9 +16097,12 @@ paths: - lang: python label: retrieveAccountingAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.attachments.retrieve(x_connection_token="", id="") @@ -14881,13 +16116,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -14902,7 +16140,7 @@ paths: } - lang: ruby label: retrieveAccountingAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_attachment_output.nil?\n # handle response\nend" /accounting/balancesheets: get: operationId: listAccountingBalanceSheets @@ -14956,7 +16194,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.balancesheets.list({ @@ -14971,9 +16211,12 @@ paths: - lang: python label: listAccountingBalanceSheets source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.balancesheets.list(x_connection_token="") @@ -14987,13 +16230,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Balancesheets.List(ctx, xConnectionToken, nil, nil, nil) @@ -15006,7 +16252,7 @@ paths: } - lang: ruby label: listAccountingBalanceSheets - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_balancesheets.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_balancesheets.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/balancesheets/{id}: get: operationId: retrieveAccountingBalanceSheet @@ -15046,7 +16292,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.balancesheets.retrieve({ @@ -15062,9 +16310,12 @@ paths: - lang: python label: retrieveAccountingBalanceSheet source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.balancesheets.retrieve(x_connection_token="", id="") @@ -15078,13 +16329,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -15099,7 +16353,7 @@ paths: } - lang: ruby label: retrieveAccountingBalanceSheet - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_balancesheets.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_balancesheet_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_balancesheets.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_balancesheet_output.nil?\n # handle response\nend" /accounting/cashflowstatements: get: operationId: listAccountingCashflowStatement @@ -15153,7 +16407,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.cashflowstatements.list({ @@ -15168,9 +16424,12 @@ paths: - lang: python label: listAccountingCashflowStatement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.cashflowstatements.list(x_connection_token="") @@ -15184,13 +16443,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Cashflowstatements.List(ctx, xConnectionToken, nil, nil, nil) @@ -15203,7 +16465,7 @@ paths: } - lang: ruby label: listAccountingCashflowStatement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_cashflowstatements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_cashflowstatements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/cashflowstatements/{id}: get: operationId: retrieveAccountingCashflowStatement @@ -15243,7 +16505,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.cashflowstatements.retrieve({ @@ -15259,9 +16523,12 @@ paths: - lang: python label: retrieveAccountingCashflowStatement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.cashflowstatements.retrieve(x_connection_token="", id="") @@ -15275,13 +16542,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -15296,7 +16566,7 @@ paths: } - lang: ruby label: retrieveAccountingCashflowStatement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_cashflowstatements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_cashflowstatement_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_cashflowstatements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_cashflowstatement_output.nil?\n # handle response\nend" /accounting/companyinfos: get: operationId: listAccountingCompanyInfos @@ -15350,7 +16620,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.companyinfos.list({ @@ -15365,9 +16637,12 @@ paths: - lang: python label: listAccountingCompanyInfos source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.companyinfos.list(x_connection_token="") @@ -15381,13 +16656,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Companyinfos.List(ctx, xConnectionToken, nil, nil, nil) @@ -15400,7 +16678,7 @@ paths: } - lang: ruby label: listAccountingCompanyInfos - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_companyinfos.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_companyinfos.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/companyinfos/{id}: get: operationId: retrieveAccountingCompanyInfo @@ -15440,7 +16718,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.companyinfos.retrieve({ @@ -15456,9 +16736,12 @@ paths: - lang: python label: retrieveAccountingCompanyInfo source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.companyinfos.retrieve(x_connection_token="", id="") @@ -15472,13 +16755,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -15493,7 +16779,7 @@ paths: } - lang: ruby label: retrieveAccountingCompanyInfo - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_companyinfos.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_companyinfo_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_companyinfos.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_companyinfo_output.nil?\n # handle response\nend" /accounting/contacts: get: operationId: listAccountingContacts @@ -15546,7 +16832,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.contacts.list({ @@ -15561,9 +16849,12 @@ paths: - lang: python label: listAccountingContacts source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.contacts.list(x_connection_token="") @@ -15577,13 +16868,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Contacts.List(ctx, xConnectionToken, nil, nil, nil) @@ -15596,7 +16890,7 @@ paths: } - lang: ruby label: listAccountingContacts - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_contacts.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingContact summary: Create Contacts @@ -15635,7 +16929,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.contacts.create({ @@ -15651,9 +16947,12 @@ paths: - lang: python label: createAccountingContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.contacts.create(x_connection_token="", unified_accounting_contact_input={}) @@ -15667,6 +16966,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -15674,7 +16974,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingContactInput := components.UnifiedAccountingContactInput{} @@ -15689,7 +16991,7 @@ paths: } - lang: ruby label: createAccountingContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_contacts.create(x_connection_token=\"\", unified_accounting_contact_input=::OpenApiSDK::Shared::UnifiedAccountingContactInput.new(), remote_data=false)\n\nif ! res.unified_accounting_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_contacts.create(x_connection_token=\"\", unified_accounting_contact_input=::OpenApiSDK::Shared::UnifiedAccountingContactInput.new(), remote_data=false)\n\nif ! res.unified_accounting_contact_output.nil?\n # handle response\nend" /accounting/contacts/{id}: get: operationId: retrieveAccountingContact @@ -15729,7 +17031,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.contacts.retrieve({ @@ -15745,9 +17049,12 @@ paths: - lang: python label: retrieveAccountingContact source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.contacts.retrieve(x_connection_token="", id="") @@ -15761,13 +17068,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -15782,7 +17092,7 @@ paths: } - lang: ruby label: retrieveAccountingContact - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_contact_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_contacts.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_contact_output.nil?\n # handle response\nend" /accounting/creditnotes: get: operationId: listAccountingCreditNote @@ -15836,7 +17146,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.creditnotes.list({ @@ -15851,9 +17163,12 @@ paths: - lang: python label: listAccountingCreditNote source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.creditnotes.list(x_connection_token="") @@ -15867,13 +17182,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Creditnotes.List(ctx, xConnectionToken, nil, nil, nil) @@ -15886,7 +17204,7 @@ paths: } - lang: ruby label: listAccountingCreditNote - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_creditnotes.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_creditnotes.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/creditnotes/{id}: get: operationId: retrieveAccountingCreditNote @@ -15926,7 +17244,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.creditnotes.retrieve({ @@ -15942,9 +17262,12 @@ paths: - lang: python label: retrieveAccountingCreditNote source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.creditnotes.retrieve(x_connection_token="", id="") @@ -15958,13 +17281,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -15979,7 +17305,7 @@ paths: } - lang: ruby label: retrieveAccountingCreditNote - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_creditnotes.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_creditnote_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_creditnotes.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_creditnote_output.nil?\n # handle response\nend" /accounting/expenses: get: operationId: listAccountingExpense @@ -16032,7 +17358,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.expenses.list({ @@ -16047,9 +17375,12 @@ paths: - lang: python label: listAccountingExpense source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.expenses.list(x_connection_token="") @@ -16063,13 +17394,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Expenses.List(ctx, xConnectionToken, nil, nil, nil) @@ -16082,7 +17416,7 @@ paths: } - lang: ruby label: listAccountingExpense - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_expenses.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_expenses.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingExpense summary: Create Expenses @@ -16121,7 +17455,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.expenses.create({ @@ -16137,9 +17473,12 @@ paths: - lang: python label: createAccountingExpense source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.expenses.create(x_connection_token="", unified_accounting_expense_input={}) @@ -16153,6 +17492,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -16160,7 +17500,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingExpenseInput := components.UnifiedAccountingExpenseInput{} @@ -16175,7 +17517,7 @@ paths: } - lang: ruby label: createAccountingExpense - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_expenses.create(x_connection_token=\"\", unified_accounting_expense_input=::OpenApiSDK::Shared::UnifiedAccountingExpenseInput.new(), remote_data=false)\n\nif ! res.unified_accounting_expense_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_expenses.create(x_connection_token=\"\", unified_accounting_expense_input=::OpenApiSDK::Shared::UnifiedAccountingExpenseInput.new(), remote_data=false)\n\nif ! res.unified_accounting_expense_output.nil?\n # handle response\nend" /accounting/expenses/{id}: get: operationId: retrieveAccountingExpense @@ -16215,7 +17557,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.expenses.retrieve({ @@ -16231,9 +17575,12 @@ paths: - lang: python label: retrieveAccountingExpense source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.expenses.retrieve(x_connection_token="", id="") @@ -16247,13 +17594,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -16268,7 +17618,7 @@ paths: } - lang: ruby label: retrieveAccountingExpense - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_expenses.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_expense_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_expenses.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_expense_output.nil?\n # handle response\nend" /accounting/incomestatements: get: operationId: listAccountingIncomeStatement @@ -16322,7 +17672,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.incomestatements.list({ @@ -16337,9 +17689,12 @@ paths: - lang: python label: listAccountingIncomeStatement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.incomestatements.list(x_connection_token="") @@ -16353,13 +17708,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Incomestatements.List(ctx, xConnectionToken, nil, nil, nil) @@ -16372,7 +17730,7 @@ paths: } - lang: ruby label: listAccountingIncomeStatement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_incomestatements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_incomestatements.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/incomestatements/{id}: get: operationId: retrieveAccountingIncomeStatement @@ -16412,7 +17770,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.incomestatements.retrieve({ @@ -16428,9 +17788,12 @@ paths: - lang: python label: retrieveAccountingIncomeStatement source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.incomestatements.retrieve(x_connection_token="", id="") @@ -16444,13 +17807,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -16465,7 +17831,7 @@ paths: } - lang: ruby label: retrieveAccountingIncomeStatement - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_incomestatements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_incomestatement_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_incomestatements.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_incomestatement_output.nil?\n # handle response\nend" /accounting/invoices: get: operationId: listAccountingInvoice @@ -16518,7 +17884,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.invoices.list({ @@ -16533,9 +17901,12 @@ paths: - lang: python label: listAccountingInvoice source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.invoices.list(x_connection_token="") @@ -16549,13 +17920,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Invoices.List(ctx, xConnectionToken, nil, nil, nil) @@ -16568,7 +17942,7 @@ paths: } - lang: ruby label: listAccountingInvoice - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_invoices.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_invoices.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingInvoice summary: Create Invoices @@ -16607,7 +17981,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.invoices.create({ @@ -16623,9 +17999,12 @@ paths: - lang: python label: createAccountingInvoice source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.invoices.create(x_connection_token="", unified_accounting_invoice_input={}) @@ -16639,6 +18018,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -16646,7 +18026,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingInvoiceInput := components.UnifiedAccountingInvoiceInput{} @@ -16661,7 +18043,7 @@ paths: } - lang: ruby label: createAccountingInvoice - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_invoices.create(x_connection_token=\"\", unified_accounting_invoice_input=::OpenApiSDK::Shared::UnifiedAccountingInvoiceInput.new(), remote_data=false)\n\nif ! res.unified_accounting_invoice_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_invoices.create(x_connection_token=\"\", unified_accounting_invoice_input=::OpenApiSDK::Shared::UnifiedAccountingInvoiceInput.new(), remote_data=false)\n\nif ! res.unified_accounting_invoice_output.nil?\n # handle response\nend" /accounting/invoices/{id}: get: operationId: retrieveAccountingInvoice @@ -16701,7 +18083,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.invoices.retrieve({ @@ -16717,9 +18101,12 @@ paths: - lang: python label: retrieveAccountingInvoice source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.invoices.retrieve(x_connection_token="", id="") @@ -16733,13 +18120,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -16754,7 +18144,7 @@ paths: } - lang: ruby label: retrieveAccountingInvoice - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_invoices.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_invoice_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_invoices.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_invoice_output.nil?\n # handle response\nend" /accounting/items: get: operationId: listAccountingItem @@ -16807,7 +18197,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.items.list({ @@ -16822,9 +18214,12 @@ paths: - lang: python label: listAccountingItem source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.items.list(x_connection_token="") @@ -16838,13 +18233,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Items.List(ctx, xConnectionToken, nil, nil, nil) @@ -16857,7 +18255,7 @@ paths: } - lang: ruby label: listAccountingItem - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_items.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_items.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/items/{id}: get: operationId: retrieveAccountingItem @@ -16897,7 +18295,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.items.retrieve({ @@ -16913,9 +18313,12 @@ paths: - lang: python label: retrieveAccountingItem source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.items.retrieve(x_connection_token="", id="") @@ -16929,13 +18332,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -16950,7 +18356,7 @@ paths: } - lang: ruby label: retrieveAccountingItem - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_items.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_item_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_items.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_item_output.nil?\n # handle response\nend" /accounting/journalentries: get: operationId: listAccountingJournalEntry @@ -17004,7 +18410,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.journalentries.list({ @@ -17019,9 +18427,12 @@ paths: - lang: python label: listAccountingJournalEntry source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.journalentries.list(x_connection_token="") @@ -17035,13 +18446,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Journalentries.List(ctx, xConnectionToken, nil, nil, nil) @@ -17054,7 +18468,7 @@ paths: } - lang: ruby label: listAccountingJournalEntry - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_journalentries.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_journalentries.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingJournalEntry summary: Create Journal Entries @@ -17093,7 +18507,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.journalentries.create({ @@ -17109,9 +18525,12 @@ paths: - lang: python label: createAccountingJournalEntry source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.journalentries.create(x_connection_token="", unified_accounting_journalentry_input={}) @@ -17125,6 +18544,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -17132,7 +18552,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingJournalentryInput := components.UnifiedAccountingJournalentryInput{} @@ -17147,7 +18569,7 @@ paths: } - lang: ruby label: createAccountingJournalEntry - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_journalentries.create(x_connection_token=\"\", unified_accounting_journalentry_input=::OpenApiSDK::Shared::UnifiedAccountingJournalentryInput.new(), remote_data=false)\n\nif ! res.unified_accounting_journalentry_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_journalentries.create(x_connection_token=\"\", unified_accounting_journalentry_input=::OpenApiSDK::Shared::UnifiedAccountingJournalentryInput.new(), remote_data=false)\n\nif ! res.unified_accounting_journalentry_output.nil?\n # handle response\nend" /accounting/journalentries/{id}: get: operationId: retrieveAccountingJournalEntry @@ -17187,7 +18609,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.journalentries.retrieve({ @@ -17203,9 +18627,12 @@ paths: - lang: python label: retrieveAccountingJournalEntry source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.journalentries.retrieve(x_connection_token="", id="") @@ -17219,13 +18646,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -17240,7 +18670,7 @@ paths: } - lang: ruby label: retrieveAccountingJournalEntry - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_journalentries.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_journalentry_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_journalentries.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_journalentry_output.nil?\n # handle response\nend" /accounting/payments: get: operationId: listAccountingPayment @@ -17293,7 +18723,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.payments.list({ @@ -17308,9 +18740,12 @@ paths: - lang: python label: listAccountingPayment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.payments.list(x_connection_token="") @@ -17324,13 +18759,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Payments.List(ctx, xConnectionToken, nil, nil, nil) @@ -17343,7 +18781,7 @@ paths: } - lang: ruby label: listAccountingPayment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_payments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_payments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingPayment summary: Create Payments @@ -17382,7 +18820,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.payments.create({ @@ -17398,9 +18838,12 @@ paths: - lang: python label: createAccountingPayment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.payments.create(x_connection_token="", unified_accounting_payment_input={}) @@ -17414,6 +18857,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -17421,7 +18865,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingPaymentInput := components.UnifiedAccountingPaymentInput{} @@ -17436,7 +18882,7 @@ paths: } - lang: ruby label: createAccountingPayment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_payments.create(x_connection_token=\"\", unified_accounting_payment_input=::OpenApiSDK::Shared::UnifiedAccountingPaymentInput.new(), remote_data=false)\n\nif ! res.unified_accounting_payment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_payments.create(x_connection_token=\"\", unified_accounting_payment_input=::OpenApiSDK::Shared::UnifiedAccountingPaymentInput.new(), remote_data=false)\n\nif ! res.unified_accounting_payment_output.nil?\n # handle response\nend" /accounting/payments/{id}: get: operationId: retrieveAccountingPayment @@ -17476,7 +18922,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.payments.retrieve({ @@ -17492,9 +18940,12 @@ paths: - lang: python label: retrieveAccountingPayment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.payments.retrieve(x_connection_token="", id="") @@ -17508,13 +18959,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -17529,7 +18983,7 @@ paths: } - lang: ruby label: retrieveAccountingPayment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_payments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_payment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_payments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_payment_output.nil?\n # handle response\nend" /accounting/phonenumbers: get: operationId: listAccountingPhonenumber @@ -17583,7 +19037,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.phonenumbers.list({ @@ -17598,9 +19054,12 @@ paths: - lang: python label: listAccountingPhonenumber source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.phonenumbers.list(x_connection_token="") @@ -17614,13 +19073,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Phonenumbers.List(ctx, xConnectionToken, nil, nil, nil) @@ -17633,7 +19095,7 @@ paths: } - lang: ruby label: listAccountingPhonenumber - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_phonenumbers.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_phonenumbers.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/phonenumbers/{id}: get: operationId: retrieveAccountingPhonenumber @@ -17673,7 +19135,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.phonenumbers.retrieve({ @@ -17689,9 +19153,12 @@ paths: - lang: python label: retrieveAccountingPhonenumber source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.phonenumbers.retrieve(x_connection_token="", id="") @@ -17705,13 +19172,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -17726,7 +19196,7 @@ paths: } - lang: ruby label: retrieveAccountingPhonenumber - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_phonenumbers.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_phonenumber_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_phonenumbers.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_phonenumber_output.nil?\n # handle response\nend" /accounting/purchaseorders: get: operationId: listAccountingPurchaseOrder @@ -17780,7 +19250,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.purchaseorders.list({ @@ -17795,9 +19267,12 @@ paths: - lang: python label: listAccountingPurchaseOrder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.purchaseorders.list(x_connection_token="") @@ -17811,13 +19286,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Purchaseorders.List(ctx, xConnectionToken, nil, nil, nil) @@ -17830,7 +19308,7 @@ paths: } - lang: ruby label: listAccountingPurchaseOrder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_purchaseorders.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_purchaseorders.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createAccountingPurchaseOrder summary: Create Purchase Orders @@ -17869,7 +19347,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.purchaseorders.create({ @@ -17885,9 +19365,12 @@ paths: - lang: python label: createAccountingPurchaseOrder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.purchaseorders.create(x_connection_token="", unified_accounting_purchaseorder_input={}) @@ -17901,6 +19384,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -17908,7 +19392,9 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedAccountingPurchaseorderInput := components.UnifiedAccountingPurchaseorderInput{} @@ -17923,7 +19409,7 @@ paths: } - lang: ruby label: createAccountingPurchaseOrder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_purchaseorders.create(x_connection_token=\"\", unified_accounting_purchaseorder_input=::OpenApiSDK::Shared::UnifiedAccountingPurchaseorderInput.new(), remote_data=false)\n\nif ! res.unified_accounting_purchaseorder_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_purchaseorders.create(x_connection_token=\"\", unified_accounting_purchaseorder_input=::OpenApiSDK::Shared::UnifiedAccountingPurchaseorderInput.new(), remote_data=false)\n\nif ! res.unified_accounting_purchaseorder_output.nil?\n # handle response\nend" /accounting/purchaseorders/{id}: get: operationId: retrieveAccountingPurchaseOrder @@ -17963,7 +19449,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.purchaseorders.retrieve({ @@ -17979,9 +19467,12 @@ paths: - lang: python label: retrieveAccountingPurchaseOrder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.purchaseorders.retrieve(x_connection_token="", id="") @@ -17995,13 +19486,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18016,7 +19510,7 @@ paths: } - lang: ruby label: retrieveAccountingPurchaseOrder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_purchaseorders.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_purchaseorder_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_purchaseorders.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_purchaseorder_output.nil?\n # handle response\nend" /accounting/taxrates: get: operationId: listAccountingTaxRate @@ -18069,7 +19563,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.taxrates.list({ @@ -18084,9 +19580,12 @@ paths: - lang: python label: listAccountingTaxRate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.taxrates.list(x_connection_token="") @@ -18100,13 +19599,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Taxrates.List(ctx, xConnectionToken, nil, nil, nil) @@ -18119,7 +19621,7 @@ paths: } - lang: ruby label: listAccountingTaxRate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_taxrates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_taxrates.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/taxrates/{id}: get: operationId: retrieveAccountingTaxRate @@ -18159,7 +19661,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.taxrates.retrieve({ @@ -18175,9 +19679,12 @@ paths: - lang: python label: retrieveAccountingTaxRate source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.taxrates.retrieve(x_connection_token="", id="") @@ -18191,13 +19698,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18212,7 +19722,7 @@ paths: } - lang: ruby label: retrieveAccountingTaxRate - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_taxrates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_taxrate_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_taxrates.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_taxrate_output.nil?\n # handle response\nend" /accounting/trackingcategories: get: operationId: listAccountingTrackingCategorys @@ -18266,7 +19776,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.trackingcategories.list({ @@ -18281,9 +19793,12 @@ paths: - lang: python label: listAccountingTrackingCategorys source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.trackingcategories.list(x_connection_token="") @@ -18297,13 +19812,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Trackingcategories.List(ctx, xConnectionToken, nil, nil, nil) @@ -18316,7 +19834,7 @@ paths: } - lang: ruby label: listAccountingTrackingCategorys - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_trackingcategories.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_trackingcategories.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/trackingcategories/{id}: get: operationId: retrieveAccountingTrackingCategory @@ -18356,7 +19874,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.trackingcategories.retrieve({ @@ -18372,9 +19892,12 @@ paths: - lang: python label: retrieveAccountingTrackingCategory source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.trackingcategories.retrieve(x_connection_token="", id="") @@ -18388,13 +19911,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18409,7 +19935,7 @@ paths: } - lang: ruby label: retrieveAccountingTrackingCategory - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_trackingcategories.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_trackingcategory_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_trackingcategories.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_trackingcategory_output.nil?\n # handle response\nend" /accounting/transactions: get: operationId: listAccountingTransaction @@ -18463,7 +19989,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.transactions.list({ @@ -18478,9 +20006,12 @@ paths: - lang: python label: listAccountingTransaction source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.transactions.list(x_connection_token="") @@ -18494,13 +20025,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Transactions.List(ctx, xConnectionToken, nil, nil, nil) @@ -18513,7 +20047,7 @@ paths: } - lang: ruby label: listAccountingTransaction - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_transactions.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_transactions.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/transactions/{id}: get: operationId: retrieveAccountingTransaction @@ -18553,7 +20087,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.transactions.retrieve({ @@ -18569,9 +20105,12 @@ paths: - lang: python label: retrieveAccountingTransaction source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.transactions.retrieve(x_connection_token="", id="") @@ -18585,13 +20124,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18606,7 +20148,7 @@ paths: } - lang: ruby label: retrieveAccountingTransaction - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_transactions.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_transaction_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_transactions.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_transaction_output.nil?\n # handle response\nend" /accounting/vendorcredits: get: operationId: listAccountingVendorCredit @@ -18660,7 +20202,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.vendorcredits.list({ @@ -18675,9 +20219,12 @@ paths: - lang: python label: listAccountingVendorCredit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.vendorcredits.list(x_connection_token="") @@ -18691,13 +20238,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Accounting.Vendorcredits.List(ctx, xConnectionToken, nil, nil, nil) @@ -18710,7 +20260,7 @@ paths: } - lang: ruby label: listAccountingVendorCredit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_vendorcredits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_vendorcredits.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /accounting/vendorcredits/{id}: get: operationId: retrieveAccountingVendorCredit @@ -18750,7 +20300,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.accounting.vendorcredits.retrieve({ @@ -18766,9 +20318,12 @@ paths: - lang: python label: retrieveAccountingVendorCredit source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.accounting.vendorcredits.retrieve(x_connection_token="", id="") @@ -18782,13 +20337,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18803,7 +20361,7 @@ paths: } - lang: ruby label: retrieveAccountingVendorCredit - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.accounting_vendorcredits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_vendorcredit_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.accounting_vendorcredits.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_accounting_vendorcredit_output.nil?\n # handle response\nend" /filestorage/drives: get: operationId: listFilestorageDrives @@ -18856,7 +20414,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.drives.list({ @@ -18871,9 +20431,12 @@ paths: - lang: python label: listFilestorageDrives source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.drives.list(x_connection_token="") @@ -18887,13 +20450,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Filestorage.Drives.List(ctx, xConnectionToken, nil, nil, nil) @@ -18906,7 +20472,7 @@ paths: } - lang: ruby label: listFilestorageDrives - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_drives.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_drives.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /filestorage/drives/{id}: get: operationId: retrieveFilestorageDrive @@ -18946,7 +20512,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.drives.retrieve({ @@ -18962,9 +20530,12 @@ paths: - lang: python label: retrieveFilestorageDrive source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.drives.retrieve(x_connection_token="", id="") @@ -18978,13 +20549,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -18999,7 +20573,7 @@ paths: } - lang: ruby label: retrieveFilestorageDrive - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_drives.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_drive_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_drives.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_drive_output.nil?\n # handle response\nend" /filestorage/files: get: operationId: listFilestorageFile @@ -19052,7 +20626,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.files.list({ @@ -19067,9 +20643,12 @@ paths: - lang: python label: listFilestorageFile source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.files.list(x_connection_token="") @@ -19083,13 +20662,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Filestorage.Files.List(ctx, xConnectionToken, nil, nil, nil) @@ -19102,7 +20684,7 @@ paths: } - lang: ruby label: listFilestorageFile - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_files.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_files.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createFilestorageFile summary: Create Files @@ -19140,7 +20722,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.files.create({ @@ -19154,7 +20738,6 @@ paths: folderId: "", permission: "", sharedLink: "", - fieldMappings: {}, }, }); @@ -19166,9 +20749,12 @@ paths: - lang: python label: createFilestorageFile source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.files.create(x_connection_token="", remote_data=False, unified_filestorage_file_input={ @@ -19179,7 +20765,6 @@ paths: "folder_id": "", "permission": "", "shared_link": "", - "field_mappings": {}, }) if res is not None: @@ -19191,6 +20776,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -19198,20 +20784,21 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var remoteData bool = false unifiedFilestorageFileInput := components.UnifiedFilestorageFileInput{ - Name: "", - FileURL: "", - MimeType: "", - Size: "", - FolderID: "", - Permission: "", - SharedLink: "", - FieldMappings: components.UnifiedFilestorageFileInputFieldMappings{}, + Name: gosdk.String(""), + FileURL: gosdk.String(""), + MimeType: gosdk.String(""), + Size: gosdk.String(""), + FolderID: gosdk.String(""), + Permission: gosdk.String(""), + SharedLink: gosdk.String(""), } ctx := context.Background() res, err := s.Filestorage.Files.Create(ctx, xConnectionToken, remoteData, unifiedFilestorageFileInput) @@ -19224,7 +20811,7 @@ paths: } - lang: ruby label: createFilestorageFile - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_files.create(x_connection_token=\"\", remote_data=false, unified_filestorage_file_input=::OpenApiSDK::Shared::UnifiedFilestorageFileInput.new(\n name: \"\",\n file_url: \"\",\n mime_type: \"\",\n size: \"\",\n folder_id: \"\",\n permission: \"\",\n shared_link: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedFilestorageFileInputFieldMappings.new(),\n ))\n\nif ! res.unified_filestorage_file_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_files.create(x_connection_token=\"\", remote_data=false, unified_filestorage_file_input=::OpenApiSDK::Shared::UnifiedFilestorageFileInput.new(\n name: \"\",\n file_url: \"\",\n mime_type: \"\",\n size: \"\",\n folder_id: \"\",\n permission: \"\",\n shared_link: \"\",\n ))\n\nif ! res.unified_filestorage_file_output.nil?\n # handle response\nend" /filestorage/files/{id}: get: operationId: retrieveFilestorageFile @@ -19264,7 +20851,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.files.retrieve({ @@ -19280,9 +20869,12 @@ paths: - lang: python label: retrieveFilestorageFile source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.files.retrieve(x_connection_token="", id="") @@ -19296,13 +20888,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -19317,7 +20912,7 @@ paths: } - lang: ruby label: retrieveFilestorageFile - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_files.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_file_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_files.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_file_output.nil?\n # handle response\nend" /filestorage/folders: get: operationId: listFilestorageFolder @@ -19370,7 +20965,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.folders.list({ @@ -19385,9 +20982,12 @@ paths: - lang: python label: listFilestorageFolder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.folders.list(x_connection_token="") @@ -19401,13 +21001,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Filestorage.Folders.List(ctx, xConnectionToken, nil, nil, nil) @@ -19420,7 +21023,7 @@ paths: } - lang: ruby label: listFilestorageFolder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_folders.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_folders.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createFilestorageFolder summary: Create Folders @@ -19458,7 +21061,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.folders.create({ @@ -19473,7 +21078,6 @@ paths: parentFolderId: "", sharedLink: "", permission: "", - fieldMappings: {}, }, }); @@ -19485,9 +21089,12 @@ paths: - lang: python label: createFilestorageFolder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.folders.create(x_connection_token="", remote_data=False, unified_filestorage_folder_input={ @@ -19499,7 +21106,6 @@ paths: "parent_folder_id": "", "shared_link": "", "permission": "", - "field_mappings": {}, }) if res is not None: @@ -19511,6 +21117,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -19518,21 +21125,22 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var remoteData bool = false unifiedFilestorageFolderInput := components.UnifiedFilestorageFolderInput{ - Name: "", - Size: "", - FolderURL: "", + Name: gosdk.String(""), + Size: gosdk.String(""), + FolderURL: gosdk.String(""), Description: "Multi-tiered human-resource model", - DriveID: "", - ParentFolderID: "", - SharedLink: "", - Permission: "", - FieldMappings: components.UnifiedFilestorageFolderInputFieldMappings{}, + DriveID: gosdk.String(""), + ParentFolderID: gosdk.String(""), + SharedLink: gosdk.String(""), + Permission: gosdk.String(""), } ctx := context.Background() res, err := s.Filestorage.Folders.Create(ctx, xConnectionToken, remoteData, unifiedFilestorageFolderInput) @@ -19545,7 +21153,7 @@ paths: } - lang: ruby label: createFilestorageFolder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_folders.create(x_connection_token=\"\", remote_data=false, unified_filestorage_folder_input=::OpenApiSDK::Shared::UnifiedFilestorageFolderInput.new(\n name: \"\",\n size: \"\",\n folder_url: \"\",\n description: \"Multi-tiered human-resource model\",\n drive_id: \"\",\n parent_folder_id: \"\",\n shared_link: \"\",\n permission: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedFilestorageFolderInputFieldMappings.new(),\n ))\n\nif ! res.unified_filestorage_folder_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_folders.create(x_connection_token=\"\", remote_data=false, unified_filestorage_folder_input=::OpenApiSDK::Shared::UnifiedFilestorageFolderInput.new(\n name: \"\",\n size: \"\",\n folder_url: \"\",\n description: \"Multi-tiered human-resource model\",\n drive_id: \"\",\n parent_folder_id: \"\",\n shared_link: \"\",\n permission: \"\",\n ))\n\nif ! res.unified_filestorage_folder_output.nil?\n # handle response\nend" /filestorage/folders/{id}: get: operationId: retrieveFilestorageFolder @@ -19585,7 +21193,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.folders.retrieve({ @@ -19601,9 +21211,12 @@ paths: - lang: python label: retrieveFilestorageFolder source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.folders.retrieve(x_connection_token="", id="") @@ -19617,13 +21230,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -19638,7 +21254,7 @@ paths: } - lang: ruby label: retrieveFilestorageFolder - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_folders.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_folder_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_folders.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_folder_output.nil?\n # handle response\nend" /filestorage/groups: get: operationId: listFilestorageGroup @@ -19691,7 +21307,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.groups.list({ @@ -19706,9 +21324,12 @@ paths: - lang: python label: listFilestorageGroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.groups.list(x_connection_token="") @@ -19722,13 +21343,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Filestorage.Groups.List(ctx, xConnectionToken, nil, nil, nil) @@ -19741,7 +21365,7 @@ paths: } - lang: ruby label: listFilestorageGroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_groups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_groups.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /filestorage/groups/{id}: get: operationId: retrieveFilestorageGroup @@ -19781,7 +21405,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.groups.retrieve({ @@ -19797,9 +21423,12 @@ paths: - lang: python label: retrieveFilestorageGroup source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.groups.retrieve(x_connection_token="", id="") @@ -19813,13 +21442,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -19834,7 +21466,7 @@ paths: } - lang: ruby label: retrieveFilestorageGroup - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_groups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_group_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_groups.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_filestorage_group_output.nil?\n # handle response\nend" /filestorage/users: get: operationId: listFilestorageUsers @@ -19887,7 +21519,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.users.list({ @@ -19902,9 +21536,12 @@ paths: - lang: python label: listFilestorageUsers source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.users.list(x_connection_token="") @@ -19918,13 +21555,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Filestorage.Users.List(ctx, xConnectionToken, nil, nil, nil) @@ -19937,7 +21577,7 @@ paths: } - lang: ruby label: listFilestorageUsers - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_users.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" /filestorage/users/{id}: get: operationId: retrieveFilestorageUser @@ -19977,7 +21617,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.filestorage.users.retrieve({ @@ -19993,9 +21635,12 @@ paths: - lang: python label: retrieveFilestorageUser source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.filestorage.users.retrieve(x_connection_token="", id="") @@ -20009,13 +21654,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -20030,7 +21678,7 @@ paths: } - lang: ruby label: retrieveFilestorageUser - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.filestorage_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_user_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.filestorage_users.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_user_output.nil?\n # handle response\nend" /ticketing/attachments: get: operationId: listTicketingAttachments @@ -20084,7 +21732,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.attachments.list({ @@ -20099,9 +21749,12 @@ paths: - lang: python label: listTicketingAttachments source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.attachments.list(x_connection_token="") @@ -20115,13 +21768,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" ctx := context.Background() res, err := s.Ticketing.Attachments.List(ctx, xConnectionToken, nil, nil, nil) @@ -20134,7 +21790,7 @@ paths: } - lang: ruby label: listTicketingAttachments - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_attachments.list(x_connection_token=\"\", remote_data=false, limit=7685.78, cursor=\"\")\n\nif ! res.object.nil?\n # handle response\nend" post: operationId: createTicketingAttachment summary: Create Attachments @@ -20173,7 +21829,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.attachments.create({ @@ -20182,7 +21840,9 @@ paths: fileName: "your_file_here", fileUrl: "", uploader: "", - fieldMappings: {}, + fieldMappings: { + "key": "", + }, }, }); @@ -20194,16 +21854,21 @@ paths: - lang: python label: createTicketingAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.attachments.create(x_connection_token="", unified_ticketing_attachment_input={ "file_name": "your_file_here", "file_url": "", "uploader": "", - "field_mappings": {}, + "field_mappings": { + "key": "", + }, }) if res is not None: @@ -20215,6 +21880,7 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "github.com/panoratech/go-sdk/models/components" "context" @@ -20222,14 +21888,18 @@ paths: ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" unifiedTicketingAttachmentInput := components.UnifiedTicketingAttachmentInput{ - FileName: "your_file_here", - FileURL: "", - Uploader: "", - FieldMappings: components.UnifiedTicketingAttachmentInputFieldMappings{}, + FileName: gosdk.String("your_file_here"), + FileURL: gosdk.String(""), + Uploader: gosdk.String(""), + FieldMappings: map[string]any{ + "key": "", + }, } ctx := context.Background() res, err := s.Ticketing.Attachments.Create(ctx, xConnectionToken, unifiedTicketingAttachmentInput, nil) @@ -20242,7 +21912,7 @@ paths: } - lang: ruby label: createTicketingAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_attachments.create(x_connection_token=\"\", unified_ticketing_attachment_input=::OpenApiSDK::Shared::UnifiedTicketingAttachmentInput.new(\n file_name: \"your_file_here\",\n file_url: \"\",\n uploader: \"\",\n field_mappings: ::OpenApiSDK::Shared::UnifiedTicketingAttachmentInputFieldMappings.new(),\n ), remote_data=false)\n\nif ! res.unified_ticketing_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_attachments.create(x_connection_token=\"\", unified_ticketing_attachment_input=::OpenApiSDK::Shared::UnifiedTicketingAttachmentInput.new(\n file_name: \"your_file_here\",\n file_url: \"\",\n uploader: \"\",\n field_mappings: {\n \"online\": \"\",\n },\n ), remote_data=false)\n\nif ! res.unified_ticketing_attachment_output.nil?\n # handle response\nend" /ticketing/attachments/{id}: get: operationId: retrieveTicketingAttachment @@ -20282,7 +21952,9 @@ paths: source: |- import { Panora } from "@panora/sdk"; - const panora = new Panora(); + const panora = new Panora({ + apiKey: process.env.API_KEY, + }); async function run() { const result = await panora.ticketing.attachments.retrieve({ @@ -20298,9 +21970,12 @@ paths: - lang: python label: retrieveTicketingAttachment source: |- + import os from panora_sdk import Panora - s = Panora() + s = Panora( + api_key=os.getenv("API_KEY", ""), + ) res = s.ticketing.attachments.retrieve(x_connection_token="", id="") @@ -20314,13 +21989,16 @@ paths: package main import( + "os" gosdk "github.com/panoratech/go-sdk" "context" "log" ) func main() { - s := gosdk.New() + s := gosdk.New( + gosdk.WithSecurity(os.Getenv("API_KEY")), + ) var xConnectionToken string = "" var id string = "" @@ -20335,7 +22013,7 @@ paths: } - lang: ruby label: retrieveTicketingAttachment - source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\n\n \nres = s.ticketing_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_attachment_output.nil?\n # handle response\nend" + source: "require 'panora'\n\n\ns = ::OpenApiSDK::Panora.new\ns.config_security(\n ::OpenApiSDK::Shared::Security.new(\n api_key: \"\",\n )\n)\n\n \nres = s.ticketing_attachments.retrieve(x_connection_token=\"\", id=\"\", remote_data=false)\n\nif ! res.unified_ticketing_attachment_output.nil?\n # handle response\nend" info: title: Panora API description: A unified API to ship integrations @@ -20351,15 +22029,17 @@ servers: description: Development server components: securitySchemes: - bearer: - type: http - scheme: bearer + api_key: + type: apiKey + in: header + name: x-api-key schemas: WebhookResponse: type: object properties: id_webhook_endpoint: type: string + nullable: true description: The unique UUID of the webhook. endpoint_description: type: string @@ -20367,24 +22047,30 @@ components: description: The description of the webhook. url: type: string + nullable: true description: The endpoint url of the webhook. secret: type: string + nullable: true description: The secret of the webhook. active: type: boolean + nullable: true description: The status of the webhook. created_at: format: date-time type: string + nullable: true description: The created date of the webhook. scope: + nullable: true description: The events that the webhook listen to. type: array items: type: string id_project: type: string + nullable: true description: The project id tied to the webhook. last_update: format: date-time @@ -20406,11 +22092,14 @@ components: properties: url: type: string + nullable: true description: The endpoint url of the webhook. description: type: string + nullable: true description: The description of the webhook. scope: + nullable: true description: The events that the webhook listen to. type: array items: @@ -20418,20 +22107,21 @@ components: required: - url - scope - EventPayload: - type: object - properties: {} SignatureVerificationDto: type: object properties: payload: type: object + additionalProperties: true + nullable: true description: The payload event of the webhook. signature: type: string + nullable: true description: The signature of the webhook. secret: type: string + nullable: true description: The secret of the webhook. required: - payload @@ -20442,8 +22132,10 @@ components: properties: prev_cursor: type: string + nullable: true next_cursor: type: string + nullable: true data: type: array items: @@ -20457,29 +22149,37 @@ components: properties: body: type: string + nullable: true description: The body of the comment html_body: type: string + nullable: true description: The html body of the comment is_private: type: boolean + nullable: true description: The public status of the comment creator_type: type: string + nullable: true description: >- The creator type of the comment. Authorized values are either USER or CONTACT ticket_id: type: string + nullable: true description: The UUID of the ticket the comment is tied to contact_id: type: string + nullable: true description: >- The UUID of the contact which the comment belongs to (if no user_id specified) user_id: type: string + nullable: true description: >- The UUID of the user which the comment belongs to (if no contact_id specified) attachments: + nullable: true description: The attachements UUIDs tied to the comment type: array items: @@ -20491,28 +22191,36 @@ components: properties: name: type: string + nullable: true description: The name of the ticket status: type: string + nullable: true description: The status of the ticket. Authorized values are OPEN or CLOSED. description: type: string + nullable: true description: The description of the ticket due_date: format: date-time type: string + nullable: true description: The date the ticket is due type: type: string + nullable: true description: >- The type of the ticket. Authorized values are PROBLEM, QUESTION, or TASK parent_ticket: type: string + nullable: true description: The UUID of the parent ticket collections: type: string + nullable: true description: The collection UUIDs the ticket belongs to tags: + nullable: true description: The tags names of the ticket type: array items: @@ -20520,83 +22228,105 @@ components: completed_at: format: date-time type: string + nullable: true description: The date the ticket has been completed priority: type: string + nullable: true description: >- The priority of the ticket. Authorized values are HIGH, MEDIUM or LOW. assigned_to: + nullable: true description: The users UUIDs the ticket is assigned to type: array items: type: string comment: + nullable: true description: The comment of the ticket allOf: - $ref: '#/components/schemas/UnifiedTicketingCommentInput' account_id: type: string + nullable: true description: The UUID of the account which the ticket belongs to contact_id: type: string + nullable: true description: The UUID of the contact which the ticket belongs to attachments: - description: The attachements UUIDs tied to the ticket + nullable: true + description: The attachments UUIDs tied to the ticket type: array items: type: string field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the ticket between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the ticket remote_id: type: string + nullable: true description: The id of the ticket in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the ticket in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - description - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingTicketInput: type: object properties: name: type: string + nullable: true description: The name of the ticket status: type: string + nullable: true description: The status of the ticket. Authorized values are OPEN or CLOSED. description: type: string + nullable: true description: The description of the ticket due_date: format: date-time type: string + nullable: true description: The date the ticket is due type: type: string + nullable: true description: >- The type of the ticket. Authorized values are PROBLEM, QUESTION, or TASK parent_ticket: type: string + nullable: true description: The UUID of the parent ticket collections: type: string + nullable: true description: The collection UUIDs the ticket belongs to tags: + nullable: true description: The tags names of the ticket type: array items: @@ -20604,167 +22334,231 @@ components: completed_at: format: date-time type: string + nullable: true description: The date the ticket has been completed priority: type: string + nullable: true description: >- The priority of the ticket. Authorized values are HIGH, MEDIUM or LOW. assigned_to: + nullable: true description: The users UUIDs the ticket is assigned to type: array items: type: string comment: + nullable: true description: The comment of the ticket allOf: - $ref: '#/components/schemas/UnifiedTicketingCommentInput' account_id: type: string + nullable: true description: The UUID of the account which the ticket belongs to contact_id: type: string + nullable: true description: The UUID of the contact which the ticket belongs to attachments: - description: The attachements UUIDs tied to the ticket + nullable: true + description: The attachments UUIDs tied to the ticket type: array items: type: string field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the ticket between the remote 3rd party & Panora + additionalProperties: true required: - name - description - - field_mappings UnifiedTicketingUserOutput: type: object properties: name: type: string + nullable: true description: The name of the user email_address: type: string + nullable: true description: The email address of the user teams: + nullable: true description: The teams whose the user is part of type: array items: type: string account_id: type: string + nullable: true description: The account or organization the user is part of field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the user between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the user remote_id: type: string + nullable: true description: The id of the user in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the user in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - email_address - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingAccountOutput: type: object properties: name: type: string + nullable: true description: The name of the account domains: + nullable: true description: The domains of the account type: array items: type: string field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the account between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the account remote_id: type: string + nullable: true description: The id of the account in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the account in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingContactOutput: type: object properties: name: type: string + nullable: true description: The name of the contact email_address: type: string + nullable: true description: The email address of the contact phone_number: type: string + nullable: true description: The phone number of the contact details: type: string + nullable: true description: The details of the contact field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the contact between the remote 3rd party & Panora + additionalProperties: true id: type: string description: The UUID of the contact remote_id: type: string + nullable: true description: The id of the contact in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the contact in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - email_address - - field_mappings - - remote_data - - created_at - - modified_at + ResyncStatusDto: + type: object + properties: + timestamp: + format: date-time + type: string + nullable: true + vertical: + type: string + nullable: true + provider: + type: string + nullable: true + status: + type: string + nullable: true + required: + - timestamp + - vertical + - provider + - status Email: type: object properties: email_address: type: string + nullable: true description: The email address email_address_type: type: string + nullable: true description: >- The email address type. Authorized values are either PERSONAL or WORK. owner_type: type: string + nullable: true description: The owner type of an email required: - email_address @@ -20774,27 +22568,35 @@ components: properties: street_1: type: string + nullable: true description: The street street_2: type: string + nullable: true description: 'More information about the street ' city: type: string + nullable: true description: The city state: type: string + nullable: true description: The state postal_code: type: string + nullable: true description: The postal code country: type: string + nullable: true description: The country address_type: type: string + nullable: true description: The address type. Authorized values are either PERSONAL or WORK. owner_type: type: string + nullable: true description: The owner type of the address required: - street_1 @@ -20810,13 +22612,16 @@ components: properties: phone_number: type: string + nullable: true description: >- The phone number starting with a plus (+) followed by the country code (e.g +336676778890 for France) phone_type: type: string + nullable: true description: The phone type. Authorized values are either MOBILE or WORK owner_type: type: string + nullable: true description: The owner type of a phone number required: - phone_number @@ -20827,732 +22632,940 @@ components: name: type: string description: The name of the company + nullable: true industry: type: string description: >- The industry of the company. Authorized values can be found in the Industry enum. + nullable: true number_of_employees: type: number description: The number of employees of the company + nullable: true user_id: type: string description: The UUID of the user who owns the company + nullable: true email_addresses: description: The email addresses of the company + nullable: true type: array items: $ref: '#/components/schemas/Email' addresses: description: The addresses of the company + nullable: true type: array items: $ref: '#/components/schemas/Address' phone_numbers: description: The phone numbers of the company + nullable: true type: array items: $ref: '#/components/schemas/Phone' field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the company between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the company + nullable: true remote_id: type: string description: The id of the company in the context of the Crm 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the company in the context of the Crm 3rd Party + nullable: true + additionalProperties: true created_at: type: object - properties: {} + description: The created date of the object + nullable: true modified_at: type: object - properties: {} + description: The modified date of the object + nullable: true required: - name - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmCompanyInput: type: object properties: name: type: string description: The name of the company + nullable: true industry: type: string description: >- The industry of the company. Authorized values can be found in the Industry enum. + nullable: true number_of_employees: type: number description: The number of employees of the company + nullable: true user_id: type: string description: The UUID of the user who owns the company + nullable: true email_addresses: description: The email addresses of the company + nullable: true type: array items: $ref: '#/components/schemas/Email' addresses: description: The addresses of the company + nullable: true type: array items: $ref: '#/components/schemas/Address' phone_numbers: description: The phone numbers of the company + nullable: true type: array items: $ref: '#/components/schemas/Phone' field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the company between the remote 3rd party & Panora + nullable: true + additionalProperties: true required: - name - - field_mappings UnifiedCrmContactOutput: type: object properties: first_name: type: string + nullable: true description: The first name of the contact last_name: type: string + nullable: true description: The last name of the contact email_addresses: + nullable: true description: The email addresses of the contact type: array items: $ref: '#/components/schemas/Email' phone_numbers: + nullable: true description: The phone numbers of the contact type: array items: $ref: '#/components/schemas/Phone' addresses: + nullable: true description: The addresses of the contact type: array items: $ref: '#/components/schemas/Address' user_id: type: string + nullable: true description: The UUID of the user who owns the contact field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the contact between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the contact remote_id: type: string + nullable: true description: The id of the contact in the context of the Crm 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the contact in the context of the Crm 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - first_name - last_name - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmContactInput: type: object properties: first_name: type: string + nullable: true description: The first name of the contact last_name: type: string + nullable: true description: The last name of the contact email_addresses: + nullable: true description: The email addresses of the contact type: array items: $ref: '#/components/schemas/Email' phone_numbers: + nullable: true description: The phone numbers of the contact type: array items: $ref: '#/components/schemas/Phone' addresses: + nullable: true description: The addresses of the contact type: array items: $ref: '#/components/schemas/Address' user_id: type: string + nullable: true description: The UUID of the user who owns the contact field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the contact between the remote 3rd party & Panora + additionalProperties: true required: - first_name - last_name - - field_mappings UnifiedCrmDealOutput: type: object properties: name: type: string description: The name of the deal + nullable: true description: type: string description: The description of the deal + nullable: true amount: type: number description: The amount of the deal + nullable: true user_id: type: string + nullable: true description: The UUID of the user who is on the deal stage_id: type: string + nullable: true description: The UUID of the stage of the deal company_id: type: string + nullable: true description: The UUID of the company tied to the deal field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the company between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the deal remote_id: type: string + nullable: true description: The id of the deal in the context of the Crm 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the deal in the context of the Crm 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - description - amount - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmDealInput: type: object properties: name: type: string description: The name of the deal + nullable: true description: type: string description: The description of the deal + nullable: true amount: type: number description: The amount of the deal + nullable: true user_id: type: string + nullable: true description: The UUID of the user who is on the deal stage_id: type: string + nullable: true description: The UUID of the stage of the deal company_id: type: string + nullable: true description: The UUID of the company tied to the deal field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the company between the remote 3rd party & Panora + additionalProperties: true required: - name - description - amount - - field_mappings UnifiedCrmEngagementOutput: type: object properties: content: type: string + nullable: true description: The content of the engagement direction: type: string + nullable: true description: >- The direction of the engagement. Authorized values are INBOUND or OUTBOUND subject: type: string + nullable: true description: The subject of the engagement start_at: format: date-time type: string + nullable: true description: The start time of the engagement end_time: format: date-time type: string + nullable: true description: The end time of the engagement type: type: string + nullable: true description: >- The type of the engagement. Authorized values are EMAIL, CALL or MEETING user_id: type: string + nullable: true description: The UUID of the user tied to the engagement company_id: type: string + nullable: true description: The UUID of the company tied to the engagement contacts: + nullable: true description: The UUIDs of contacts tied to the engagement object type: array items: type: string field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the engagement between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the engagement remote_id: type: string + nullable: true description: The id of the engagement in the context of the Crm 3rd Party remote_data: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The remote data of the engagement in the context of the Crm 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - type - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmEngagementInput: type: object properties: content: type: string + nullable: true description: The content of the engagement direction: type: string + nullable: true description: >- The direction of the engagement. Authorized values are INBOUND or OUTBOUND subject: type: string + nullable: true description: The subject of the engagement start_at: format: date-time type: string + nullable: true description: The start time of the engagement end_time: format: date-time type: string + nullable: true description: The end time of the engagement type: type: string + nullable: true description: >- The type of the engagement. Authorized values are EMAIL, CALL or MEETING user_id: type: string + nullable: true description: The UUID of the user tied to the engagement company_id: type: string + nullable: true description: The UUID of the company tied to the engagement contacts: + nullable: true description: The UUIDs of contacts tied to the engagement object type: array items: type: string field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the engagement between the remote 3rd party & Panora + additionalProperties: true required: - type - - field_mappings UnifiedCrmNoteOutput: type: object properties: content: type: string description: The content of the note + nullable: true user_id: type: string + nullable: true description: The UUID of the user tied the note company_id: type: string + nullable: true description: The UUID of the company tied to the note contact_id: type: string + nullable: true description: The UUID fo the contact tied to the note deal_id: type: string + nullable: true description: The UUID of the deal tied to the note field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the note between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the note remote_id: type: string + nullable: true description: The id of the note in the context of the Crm 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the note in the context of the Crm 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - content - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmNoteInput: type: object properties: content: type: string description: The content of the note + nullable: true user_id: type: string + nullable: true description: The UUID of the user tied the note company_id: type: string + nullable: true description: The UUID of the company tied to the note contact_id: type: string + nullable: true description: The UUID fo the contact tied to the note deal_id: type: string + nullable: true description: The UUID of the deal tied to the note field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the note between the remote 3rd party & Panora + additionalProperties: true required: - content - - field_mappings UnifiedCrmStageOutput: type: object properties: stage_name: type: string description: The name of the stage + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the stage between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the stage + nullable: true remote_id: type: string description: The id of the stage in the context of the Crm 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the stage in the context of the Crm 3rd Party + nullable: true + additionalProperties: true created_at: type: object - properties: {} + description: The created date of the object + nullable: true modified_at: type: object - properties: {} + description: The modified date of the object + nullable: true required: - stage_name - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmTaskOutput: type: object properties: subject: type: string description: The subject of the task + nullable: true content: type: string description: The content of the task + nullable: true status: type: string description: The status of the task. Authorized values are PENDING, COMPLETED. + nullable: true due_date: format: date-time type: string description: The due date of the task + nullable: true finished_date: format: date-time type: string description: The finished date of the task + nullable: true user_id: type: string description: The UUID of the user tied to the task + nullable: true company_id: type: string - description: The UUID fo the company tied to the task + description: The UUID of the company tied to the task + nullable: true deal_id: type: string description: The UUID of the deal tied to the task + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the task between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the task + nullable: true remote_id: type: string description: The id of the task in the context of the Crm 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the task in the context of the Crm 3rd Party + nullable: true + additionalProperties: true created_at: type: object - properties: {} + description: The created date of the object + nullable: true modified_at: type: object - properties: {} + description: The modified date of the object + nullable: true required: - subject - content - status - - field_mappings - - remote_data - - created_at - - modified_at UnifiedCrmTaskInput: type: object properties: subject: type: string description: The subject of the task + nullable: true content: type: string description: The content of the task + nullable: true status: type: string description: The status of the task. Authorized values are PENDING, COMPLETED. + nullable: true due_date: format: date-time type: string description: The due date of the task + nullable: true finished_date: format: date-time type: string description: The finished date of the task + nullable: true user_id: type: string description: The UUID of the user tied to the task + nullable: true company_id: type: string - description: The UUID fo the company tied to the task + description: The UUID of the company tied to the task + nullable: true deal_id: type: string description: The UUID of the deal tied to the task + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the task between the remote 3rd party & Panora + nullable: true + additionalProperties: true required: - subject - content - status - - field_mappings UnifiedCrmUserOutput: type: object properties: name: type: string description: The name of the user + nullable: true email: type: string description: The email of the user + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the user between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the user + nullable: true remote_id: type: string description: The id of the user in the context of the Crm 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the user in the context of the Crm 3rd Party + nullable: true + additionalProperties: true created_at: - type: object - properties: {} + format: date-time + type: string + description: The created date of the object + nullable: true modified_at: - type: object - properties: {} + format: date-time + type: string + description: The modified date of the object + nullable: true required: - name - email - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingCollectionOutput: type: object properties: name: type: string + nullable: true description: The name of the collection description: type: string + nullable: true description: The description of the collection collection_type: type: string + nullable: true description: "The type of the collection. Authorized values are either PROJECT or LIST " id: type: string + nullable: true description: The UUID of the collection remote_id: type: string + nullable: true description: The id of the collection in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the collection in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - - remote_data - - created_at - - modified_at UnifiedTicketingCommentOutput: type: object properties: body: type: string + nullable: true description: The body of the comment html_body: type: string + nullable: true description: The html body of the comment is_private: type: boolean + nullable: true description: The public status of the comment creator_type: type: string + nullable: true description: >- The creator type of the comment. Authorized values are either USER or CONTACT ticket_id: type: string + nullable: true description: The UUID of the ticket the comment is tied to contact_id: type: string + nullable: true description: >- The UUID of the contact which the comment belongs to (if no user_id specified) user_id: type: string + nullable: true description: >- The UUID of the user which the comment belongs to (if no contact_id specified) attachments: + nullable: true description: The attachements UUIDs tied to the comment type: array items: type: string id: type: string + nullable: true description: The UUID of the comment remote_id: type: string + nullable: true description: The id of the comment in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the comment in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - body - - remote_data - - created_at - - modified_at UnifiedTicketingTagOutput: type: object properties: name: type: string + nullable: true description: The name of the tag field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the tag between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the tag remote_id: type: string + nullable: true description: The id of the tag in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the tag in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingTeamOutput: type: object properties: name: type: string + nullable: true description: The name of the team description: type: string + nullable: true description: The description of the team field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the team between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the team remote_id: type: string + nullable: true description: The id of the team in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the team in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - - field_mappings - - remote_data - - created_at - - modified_at + LinkedUserResponse: + type: object + properties: + id_linked_user: + type: string + nullable: true + linked_user_origin_id: + type: string + nullable: true + alias: + type: string + nullable: true + id_project: + type: string + nullable: true + required: + - id_linked_user + - linked_user_origin_id + - alias + - id_project CreateLinkedUserDto: type: object properties: linked_user_origin_id: type: string + nullable: true alias: type: string + nullable: true required: - linked_user_origin_id - alias @@ -21560,25 +23573,107 @@ components: type: object properties: linked_user_origin_ids: + nullable: true type: array items: type: string alias: type: string + nullable: true required: - linked_user_origin_ids - alias + CustomFieldResponse: + type: object + properties: + id_attribute: + type: string + nullable: true + description: Attribute Id + status: + type: string + nullable: true + description: Attribute Status + ressource_owner_type: + type: string + nullable: true + description: Attribute Ressource Owner Type + slug: + type: string + nullable: true + description: Attribute Slug + description: + type: string + nullable: true + description: Attribute Description + data_type: + type: string + nullable: true + description: Attribute Data Type + remote_id: + type: string + nullable: true + description: Attribute Remote Id + source: + type: string + nullable: true + description: Attribute Source + id_entity: + type: string + nullable: true + description: Attribute Id Entity + id_project: + type: string + nullable: true + description: Attribute Id Project + scope: + type: string + nullable: true + description: Attribute Scope + id_consumer: + type: string + nullable: true + description: Attribute Id Consumer + created_at: + format: date-time + type: string + nullable: true + description: Attribute Created Date + modified_at: + format: date-time + type: string + nullable: true + description: Attribute Modified Date + required: + - id_attribute + - status + - ressource_owner_type + - slug + - description + - data_type + - remote_id + - source + - id_entity + - id_project + - scope + - id_consumer + - created_at + - modified_at DefineTargetFieldDto: type: object properties: object_type_owner: type: string + nullable: true name: type: string + nullable: true description: type: string + nullable: true data_type: type: string + nullable: true required: - object_type_owner - name @@ -21589,18 +23684,25 @@ components: properties: object_type_owner: type: string + nullable: true name: type: string + nullable: true description: type: string + nullable: true data_type: type: string + nullable: true source_custom_field_id: type: string + nullable: true source_provider: type: string + nullable: true linked_user_id: type: string + nullable: true required: - object_type_owner - name @@ -21614,17 +23716,41 @@ components: properties: attributeId: type: string + nullable: true + description: Attribute Id source_custom_field_id: type: string + nullable: true + description: Attribute Id source_provider: type: string + nullable: true + description: Attribute Id linked_user_id: type: string + nullable: true + description: Attribute Id required: - attributeId - source_custom_field_id - source_provider - linked_user_id + PassThroughResponse: + type: object + properties: + url: + type: string + nullable: true + status: + type: number + nullable: true + data: + type: object + nullable: true + required: + - url + - status + - data PassThroughRequestDto: type: object properties: @@ -21638,26 +23764,23 @@ components: type: string path: type: string + nullable: true data: - type: object + oneOf: + - type: object + additionalProperties: true + - type: array + items: + type: object + additionalProperties: true + nullable: true headers: type: object + additionalProperties: true + nullable: true required: - method - path - PassThroughResponse: - type: object - properties: - url: - type: string - status: - type: number - data: - type: object - required: - - url - - status - - data UnifiedHrisBankinfoOutput: type: object properties: {} @@ -21759,616 +23882,791 @@ components: properties: activity_type: type: string + nullable: true description: The type of activity subject: type: string + nullable: true description: The subject of the activity body: type: string + nullable: true description: The body of the activity visibility: type: string + nullable: true description: The visibility of the activity candidate_id: type: string + nullable: true description: The UUID of the candidate remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the activity field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the activity remote_id: type: string + nullable: true description: The remote ID of the activity in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the activity in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsActivityInput: type: object properties: activity_type: type: string + nullable: true description: The type of activity subject: type: string + nullable: true description: The subject of the activity body: type: string + nullable: true description: The body of the activity visibility: type: string + nullable: true description: The visibility of the activity candidate_id: type: string + nullable: true description: The UUID of the candidate remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the activity field_mappings: type: object - properties: {} - required: - - field_mappings + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora UnifiedAtsApplicationOutput: type: object properties: applied_at: - type: string format: date-time + type: string + nullable: true description: The application date rejected_at: - type: string format: date-time + type: string + nullable: true description: The rejection date offers: + nullable: true description: The offers UUIDs for the application type: array items: type: string source: type: string + nullable: true description: The source of the application credited_to: type: string + nullable: true description: The UUID of the person credited for the application current_stage: type: string + nullable: true description: The UUID of the current stage of the application reject_reason: type: string + nullable: true description: The rejection reason for the application candidate_id: type: string + nullable: true description: The UUID of the candidate job_id: type: string description: The UUID of the job field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the application remote_id: type: string + nullable: true description: The remote ID of the application in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the application in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object + remote_created_at: + format: date-time + type: string + nullable: true + description: The remote created date of the object + remote_modified_at: + format: date-time + type: string + nullable: true + description: The remote modified date of the object UnifiedAtsApplicationInput: type: object properties: applied_at: - type: string format: date-time + type: string + nullable: true description: The application date rejected_at: - type: string format: date-time + type: string + nullable: true description: The rejection date offers: + nullable: true description: The offers UUIDs for the application type: array items: type: string source: type: string + nullable: true description: The source of the application credited_to: type: string + nullable: true description: The UUID of the person credited for the application current_stage: type: string + nullable: true description: The UUID of the current stage of the application reject_reason: type: string + nullable: true description: The rejection reason for the application candidate_id: type: string + nullable: true description: The UUID of the candidate job_id: type: string description: The UUID of the job field_mappings: type: object - properties: {} - required: - - field_mappings + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora UnifiedAtsAttachmentOutput: type: object properties: file_url: type: string + nullable: true description: The URL of the file file_name: type: string + nullable: true description: The name of the file attachment_type: type: string + nullable: true description: The type of the file remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the attachment remote_modified_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the attachment candidate_id: type: string + nullable: true description: The UUID of the candidate field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the attachment remote_id: type: string + nullable: true description: The remote ID of the attachment remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the attachment in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsAttachmentInput: type: object properties: file_url: type: string + nullable: true description: The URL of the file file_name: type: string + nullable: true description: The name of the file attachment_type: type: string + nullable: true description: The type of the file remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the attachment remote_modified_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the attachment candidate_id: type: string + nullable: true description: The UUID of the candidate field_mappings: type: object - properties: {} - required: - - field_mappings + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora Url: type: object - properties: {} + properties: + url: + type: string + nullable: true + description: The url. + url_type: + type: string + nullable: true + description: The url type. It takes [WEBSITE | BLOG | LINKEDIN | GITHUB | OTHER] + required: + - url + - url_type UnifiedAtsCandidateOutput: type: object properties: first_name: type: string + nullable: true description: The first name of the candidate last_name: type: string + nullable: true description: The last name of the candidate company: type: string + nullable: true description: The company of the candidate title: type: string + nullable: true description: The title of the candidate locations: type: string + nullable: true description: The locations of the candidate is_private: type: boolean + nullable: true description: Whether the candidate is private email_reachable: type: boolean + nullable: true description: Whether the candidate is reachable by email remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the candidate remote_modified_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the candidate last_interaction_at: - type: string format: date-time + type: string + nullable: true description: The last interaction date with the candidate attachments: + nullable: true description: The attachments UUIDs of the candidate type: array items: type: string applications: + nullable: true description: The applications UUIDs of the candidate type: array items: type: string tags: + nullable: true description: The tags of the candidate type: array items: type: string urls: + nullable: true description: >- The urls of the candidate, possible values for Url type are WEBSITE, BLOG, LINKEDIN, GITHUB, or OTHER type: array items: $ref: '#/components/schemas/Url' phone_numbers: + nullable: true description: The phone numbers of the candidate type: array items: $ref: '#/components/schemas/Phone' email_addresses: + nullable: true description: The email addresses of the candidate type: array items: $ref: '#/components/schemas/Email' field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the candidate remote_id: type: string + nullable: true description: The id of the candidate in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the candidate in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsCandidateInput: type: object properties: first_name: type: string + nullable: true description: The first name of the candidate last_name: type: string + nullable: true description: The last name of the candidate company: type: string + nullable: true description: The company of the candidate title: type: string + nullable: true description: The title of the candidate locations: type: string + nullable: true description: The locations of the candidate is_private: type: boolean + nullable: true description: Whether the candidate is private email_reachable: type: boolean + nullable: true description: Whether the candidate is reachable by email remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the candidate remote_modified_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the candidate last_interaction_at: - type: string format: date-time + type: string + nullable: true description: The last interaction date with the candidate attachments: + nullable: true description: The attachments UUIDs of the candidate type: array items: type: string applications: + nullable: true description: The applications UUIDs of the candidate type: array items: type: string tags: + nullable: true description: The tags of the candidate type: array items: type: string urls: + nullable: true description: >- The urls of the candidate, possible values for Url type are WEBSITE, BLOG, LINKEDIN, GITHUB, or OTHER type: array items: $ref: '#/components/schemas/Url' phone_numbers: + nullable: true description: The phone numbers of the candidate type: array items: $ref: '#/components/schemas/Phone' email_addresses: + nullable: true description: The email addresses of the candidate type: array items: $ref: '#/components/schemas/Email' field_mappings: type: object - properties: {} - required: - - field_mappings + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora UnifiedAtsDepartmentOutput: type: object properties: name: type: string + nullable: true description: The name of the department field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the department remote_id: type: string + nullable: true description: The remote ID of the department in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the department in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsInterviewOutput: type: object properties: status: type: string + nullable: true description: The status of the interview application_id: type: string + nullable: true description: The UUID of the application job_interview_stage_id: type: string + nullable: true description: The UUID of the job interview stage organized_by: type: string + nullable: true description: The UUID of the organizer interviewers: + nullable: true description: The UUIDs of the interviewers type: array items: type: string location: type: string + nullable: true description: The location of the interview start_at: - type: string format: date-time + type: string + nullable: true description: The start date and time of the interview end_at: - type: string format: date-time + type: string + nullable: true description: The end date and time of the interview remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the interview remote_updated_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the interview field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the interview remote_id: type: string + nullable: true description: The remote ID of the interview in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the interview in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsInterviewInput: type: object properties: status: type: string + nullable: true description: The status of the interview application_id: type: string + nullable: true description: The UUID of the application job_interview_stage_id: type: string + nullable: true description: The UUID of the job interview stage organized_by: type: string + nullable: true description: The UUID of the organizer interviewers: + nullable: true description: The UUIDs of the interviewers type: array items: type: string location: type: string + nullable: true description: The location of the interview start_at: - type: string format: date-time + type: string + nullable: true description: The start date and time of the interview end_at: - type: string format: date-time + type: string + nullable: true description: The end date and time of the interview remote_created_at: - type: string format: date-time + type: string + nullable: true description: The remote creation date of the interview remote_updated_at: - type: string format: date-time + type: string + nullable: true description: The remote modification date of the interview field_mappings: type: object - properties: {} - required: - - field_mappings + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora UnifiedAtsJobinterviewstageOutput: type: object properties: name: type: string + nullable: true description: The name of the job interview stage stage_order: type: number + nullable: true description: The order of the stage job_id: type: string + nullable: true description: The UUID of the job field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the job interview stage remote_id: type: string + nullable: true description: >- The remote ID of the job interview stage in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: >- + The remote data of the job interview stage in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsJobOutput: type: object properties: name: type: string + nullable: true description: The name of the job description: type: string + nullable: true description: The description of the job code: type: string + nullable: true description: The code of the job status: type: string + nullable: true description: The status of the job type: type: string + nullable: true description: The type of the job confidential: type: boolean + nullable: true description: Whether the job is confidential departments: + nullable: true description: The departments UUIDs associated with the job type: array items: type: string offices: + nullable: true description: The offices UUIDs associated with the job type: array items: type: string managers: + nullable: true description: The managers UUIDs associated with the job type: array items: type: string recruiters: + nullable: true description: The recruiters UUIDs associated with the job type: array items: @@ -22376,315 +24674,389 @@ components: remote_created_at: type: string format: date-time + nullable: true description: The remote creation date of the job remote_updated_at: type: string format: date-time + nullable: true description: The remote modification date of the job field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the job remote_id: type: string + nullable: true description: The remote ID of the job in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the job in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsOfferOutput: type: object properties: created_by: type: string description: The UUID of the creator + nullable: true remote_created_at: - type: string format: date-time + type: string description: The remote creation date of the offer + nullable: true closed_at: - type: string format: date-time + type: string description: The closing date of the offer + nullable: true sent_at: - type: string format: date-time + type: string description: The sending date of the offer + nullable: true start_date: - type: string format: date-time + type: string description: The start date of the offer + nullable: true status: type: string description: The status of the offer + nullable: true application_id: type: string description: The UUID of the application + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the object between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the offer + nullable: true remote_id: type: string description: The remote ID of the offer in the context of the 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the offer in the context of the 3rd Party + nullable: true + additionalProperties: true created_at: type: object - properties: {} + description: The created date of the object + nullable: true modified_at: type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + description: The modified date of the object + nullable: true UnifiedAtsOfficeOutput: type: object properties: name: type: string + nullable: true description: The name of the office location: type: string + nullable: true description: The location of the office field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string description: The UUID of the office remote_id: type: string + nullable: true description: The remote ID of the office in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the office in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsRejectreasonOutput: type: object properties: name: type: string + nullable: true description: The name of the reject reason field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the reject reason remote_id: type: string + nullable: true description: The remote ID of the reject reason in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the reject reason in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsScorecardOutput: type: object properties: overall_recommendation: type: string + nullable: true description: The overall recommendation application_id: type: string + nullable: true description: The UUID of the application interview_id: type: string + nullable: true description: The UUID of the interview remote_created_at: type: string - format: date-time + nullable: true description: The remote creation date of the scorecard submitted_at: type: string - format: date-time + nullable: true description: The submission date of the scorecard field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string description: The UUID of the scorecard remote_id: type: string + nullable: true description: The remote ID of the scorecard in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the scorecard in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAtsTagOutput: type: object properties: name: type: string + nullable: true description: The name of the tag id_ats_candidate: type: string + nullable: true description: The UUID of the candidate field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the tag remote_id: type: string + nullable: true description: The remote ID of the tag in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the tag in the context of the 3rd Party created_at: - type: string format: date-time + type: string + nullable: true description: The creation date of the tag modified_at: - type: string format: date-time + type: string + nullable: true description: The modification date of the tag - required: - - field_mappings - - remote_data UnifiedAtsUserOutput: type: object properties: first_name: type: string description: The first name of the user + nullable: true last_name: type: string description: The last name of the user + nullable: true email: type: string description: The email of the user + nullable: true disabled: type: boolean description: Whether the user is disabled + nullable: true access_role: type: string description: The access role of the user + nullable: true remote_created_at: - type: string format: date-time + type: string description: The remote creation date of the user + nullable: true remote_modified_at: - type: string format: date-time + type: string description: The remote modification date of the user + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the object between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the user + nullable: true remote_id: type: string description: The remote ID of the user in the context of the 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the user in the context of the 3rd Party + nullable: true + additionalProperties: true created_at: - type: object - properties: {} + format: date-time + type: string + description: The created date of the object + nullable: true modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + description: The modified date of the object + nullable: true UnifiedAtsEeocsOutput: type: object properties: candidate_id: type: string + nullable: true description: The UUID of the candidate submitted_at: type: string format: date-time + nullable: true description: The submission date of the EEOC race: type: string + nullable: true description: The race of the candidate gender: type: string + nullable: true description: The gender of the candidate veteran_status: type: string + nullable: true description: The veteran status of the candidate disability_status: type: string + nullable: true description: The disability status of the candidate field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the EEOC remote_id: type: string + nullable: true description: The remote ID of the EEOC in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the EEOC in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} - required: - - field_mappings - - remote_data - - created_at - - modified_at + format: date-time + type: string + nullable: true + description: The modified date of the object UnifiedAccountingAccountOutput: type: object properties: {} @@ -22774,81 +25146,109 @@ components: properties: name: type: string + nullable: true description: The name of the drive remote_created_at: type: string + nullable: true description: When the third party s drive was created. drive_url: type: string + nullable: true description: The url of the drive field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the drive remote_id: type: string + nullable: true description: The id of the drive in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the drive in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - remote_created_at - drive_url - - field_mappings - - remote_data - - created_at - - modified_at UnifiedFilestorageFileOutput: type: object properties: name: type: string description: The name of the file + nullable: true file_url: type: string description: The url of the file + nullable: true mime_type: type: string description: The mime type of the file + nullable: true size: type: string description: The size of the file + nullable: true folder_id: type: string description: The UUID of the folder tied to the file + nullable: true permission: type: string description: The UUID of the permission tied to the file + nullable: true shared_link: type: string description: The UUID of the shared link tied to the file + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the object between the remote 3rd party & Panora + nullable: true + additionalProperties: true id: type: string description: The UUID of the file + nullable: true remote_id: type: string description: The id of the file in the context of the 3rd Party + nullable: true remote_data: type: object - properties: {} + description: The remote data of the file in the context of the 3rd Party + nullable: true + additionalProperties: true created_at: - type: object - properties: {} + format: date-time + type: string + description: The created date of the object + nullable: true modified_at: - type: object - properties: {} + format: date-time + type: string + description: The modified date of the object + nullable: true required: - name - file_url @@ -22857,37 +25257,43 @@ components: - folder_id - permission - shared_link - - field_mappings - - remote_data - - created_at - - modified_at UnifiedFilestorageFileInput: type: object properties: name: type: string description: The name of the file + nullable: true file_url: type: string description: The url of the file + nullable: true mime_type: type: string description: The mime type of the file + nullable: true size: type: string description: The size of the file + nullable: true folder_id: type: string description: The UUID of the folder tied to the file + nullable: true permission: type: string description: The UUID of the permission tied to the file + nullable: true shared_link: type: string description: The UUID of the shared link tied to the file + nullable: true field_mappings: type: object - properties: {} + description: >- + The custom field mappings of the object between the remote 3rd party & Panora + nullable: true + additionalProperties: true required: - name - file_url @@ -22896,52 +25302,69 @@ components: - folder_id - permission - shared_link - - field_mappings UnifiedFilestorageFolderOutput: type: object properties: name: type: string + nullable: true description: The name of the folder size: type: string + nullable: true description: The size of the folder folder_url: type: string + nullable: true description: The url of the folder description: type: string description: The description of the folder drive_id: type: string + nullable: true description: The UUID of the drive tied to the folder parent_folder_id: type: string + nullable: true description: The UUID of the parent folder shared_link: type: string + nullable: true description: The UUID of the shared link tied to the folder permission: type: string + nullable: true description: The UUID of the permission tied to the folder field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the folder remote_id: type: string + nullable: true description: The id of the folder in the context of the 3rd Party remote_data: type: object - properties: {} + additionalProperties: true + nullable: true + description: The remote data of the folder in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - size @@ -22951,40 +25374,46 @@ components: - parent_folder_id - shared_link - permission - - field_mappings - - remote_data - - created_at - - modified_at UnifiedFilestorageFolderInput: type: object properties: name: type: string + nullable: true description: The name of the folder size: type: string + nullable: true description: The size of the folder folder_url: type: string + nullable: true description: The url of the folder description: type: string description: The description of the folder drive_id: type: string + nullable: true description: The UUID of the drive tied to the folder parent_folder_id: type: string + nullable: true description: The UUID of the parent folder shared_link: type: string + nullable: true description: The UUID of the shared link tied to the folder permission: type: string + nullable: true description: The UUID of the permission tied to the folder field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora required: - name - size @@ -22994,12 +25423,12 @@ components: - parent_folder_id - shared_link - permission - - field_mappings UnifiedFilestorageGroupOutput: type: object properties: name: type: string + nullable: true description: The name of the group users: description: Uuids of users of the group @@ -23008,142 +25437,182 @@ components: type: string remote_was_deleted: type: boolean + nullable: true description: >- Indicates whether or not this object has been deleted in the third party platform. field_mappings: type: object - properties: {} + additionalProperties: true + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora id: type: string + nullable: true description: The UUID of the group remote_id: type: string + nullable: true description: The id of the group in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the group in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - users - remote_was_deleted - - field_mappings - - remote_data - - created_at - - modified_at UnifiedUserOutput: type: object properties: name: type: string + nullable: true description: The name of the user email: type: string + nullable: true description: The email of the user is_me: type: boolean + nullable: true description: Whether the user is the one who linked this account. field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the object between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the user remote_id: type: string + nullable: true description: The id of the user in the context of the 3rd Party remote_data: type: object - properties: {} + nullable: true + additionalProperties: true + description: The remote data of the user in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - name - email - is_me - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingAttachmentOutput: type: object properties: file_name: type: string + nullable: true description: The file name of the attachment file_url: type: string + nullable: true description: The file url of the attachment uploader: type: string + nullable: true description: The uploader's UUID of the attachment ticket_id: type: string + nullable: true description: The UUID of the ticket the attachment is tied to comment_id: type: string + nullable: true description: The UUID of the comment the attachment is tied to field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the attachment between the remote 3rd party & Panora + additionalProperties: true id: type: string + nullable: true description: The UUID of the attachment remote_id: type: string + nullable: true description: The id of the attachment in the context of the 3rd Party remote_data: type: object - properties: {} + additionalProperties: true + nullable: true + description: The remote data of the attachment in the context of the 3rd Party created_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The created date of the object modified_at: - type: object - properties: {} + format: date-time + type: string + nullable: true + description: The modified date of the object required: - file_name - file_url - uploader - - field_mappings - - remote_data - - created_at - - modified_at UnifiedTicketingAttachmentInput: type: object properties: file_name: type: string + nullable: true description: The file name of the attachment file_url: type: string + nullable: true description: The file url of the attachment uploader: type: string + nullable: true description: The uploader's UUID of the attachment ticket_id: type: string + nullable: true description: The UUID of the ticket the attachment is tied to comment_id: type: string + nullable: true description: The UUID of the comment the attachment is tied to field_mappings: type: object - properties: {} + nullable: true + description: >- + The custom field mappings of the attachment between the remote 3rd party & Panora + additionalProperties: true required: - file_name - file_url - uploader - field_mappings +security: + - api_key: [] x-speakeasy-name-override: - operationId: ^retrieve.* methodNameOverride: retrieve