openapi: 3.2.0 info: contact: email: support@lytics.com name: Lytics Support url: https://support.lytics.com/hc/en-us description: Version 2 of the Lytics API termsOfService: https://www.lytics.com/terms-of-service/ title: Lytics Auths API version: '2.0' servers: - url: https://api.lytics.io/v2 tags: - description: Create and manage credentials and access to external systems. name: Auths paths: /auth: get: description: Get a list of all auths in an account parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: items: $ref: '#/components/schemas/models.AuthResponse' type: array type: object description: Auth List '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: Get auths tags: - Auths /auth/airship-connect: post: description: Create a AirshipConnect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AirshipConnect' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipConnect: Create auth' tags: - Auths /auth/airship-connect/{id}: get: description: Get a AirshipConnect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipConnect: Get auth' tags: - Auths put: description: Update a AirshipConnect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AirshipConnect' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipConnect: Update auth' tags: - Auths /auth/airship-master-secret: post: description: Create a AirshipMasterSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AirshipMasterSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipMasterSecret: Create auth' tags: - Auths /auth/airship-master-secret/{id}: get: description: Get a AirshipMasterSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipMasterSecret: Get auth' tags: - Auths put: description: Update a AirshipMasterSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AirshipMasterSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AirshipMasterSecret: Update auth' tags: - Auths /auth/algolia-api-key: post: description: Create a AlgoliaApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AlgoliaApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AlgoliaApiKey: Create auth' tags: - Auths /auth/algolia-api-key/{id}: get: description: Get a AlgoliaApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AlgoliaApiKey: Get auth' tags: - Auths put: description: Update a AlgoliaApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AlgoliaApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AlgoliaApiKey: Update auth' tags: - Auths /auth/amplitude-api-key: post: description: Create a AmplitudeApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AmplitudeApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AmplitudeApiKey: Create auth' tags: - Auths /auth/amplitude-api-key/{id}: get: description: Get a AmplitudeApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AmplitudeApiKey: Get auth' tags: - Auths put: description: Update a AmplitudeApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AmplitudeApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AmplitudeApiKey: Update auth' tags: - Auths /auth/api: post: description: Create a Api auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Api' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Api: Create auth' tags: - Auths /auth/api/{id}: get: description: Get a Api auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Api: Get auth' tags: - Auths put: description: Update a Api auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Api' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Api: Update auth' tags: - Auths /auth/apikey: post: description: Create a Apikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Apikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Apikey: Create auth' tags: - Auths /auth/apikey/{id}: get: description: Get a Apikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Apikey: Get auth' tags: - Auths put: description: Update a Apikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Apikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Apikey: Update auth' tags: - Auths /auth/appsflyer-devkey: post: description: Create a AppsflyerDevkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AppsflyerDevkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AppsflyerDevkey: Create auth' tags: - Auths /auth/appsflyer-devkey/{id}: get: description: Get a AppsflyerDevkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AppsflyerDevkey: Get auth' tags: - Auths put: description: Update a AppsflyerDevkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AppsflyerDevkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AppsflyerDevkey: Update auth' tags: - Auths /auth/attentive-api-key: post: description: Create a AttentiveApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AttentiveApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AttentiveApiKey: Create auth' tags: - Auths /auth/attentive-api-key/{id}: get: description: Get a AttentiveApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AttentiveApiKey: Get auth' tags: - Auths put: description: Update a AttentiveApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AttentiveApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AttentiveApiKey: Update auth' tags: - Auths /auth/aws-aws-keys: post: description: Create a Aws_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Aws_AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_AwsKeys: Create auth' tags: - Auths /auth/aws-aws-keys/{id}: get: description: Get a Aws_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_AwsKeys: Get auth' tags: - Auths put: description: Update a Aws_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Aws_AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_AwsKeys: Update auth' tags: - Auths /auth/aws-delegated: post: description: Create a AwsDelegated auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegated' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegated: Create auth' tags: - Auths /auth/aws-delegated-pgp: post: description: Create a AwsDelegatedPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegatedPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPgp: Create auth' tags: - Auths /auth/aws-delegated-pgp/{id}: get: description: Get a AwsDelegatedPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPgp: Get auth' tags: - Auths put: description: Update a AwsDelegatedPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegatedPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPgp: Update auth' tags: - Auths /auth/aws-delegated-public-pgp: post: description: Create a AwsDelegatedPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegatedPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPublicPgp: Create auth' tags: - Auths /auth/aws-delegated-public-pgp/{id}: get: description: Get a AwsDelegatedPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPublicPgp: Get auth' tags: - Auths put: description: Update a AwsDelegatedPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegatedPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegatedPublicPgp: Update auth' tags: - Auths /auth/aws-delegated/{id}: get: description: Get a AwsDelegated auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegated: Get auth' tags: - Auths put: description: Update a AwsDelegated auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsDelegated' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsDelegated: Update auth' tags: - Auths /auth/aws-keys: post: description: Create a AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeys: Create auth' tags: - Auths /auth/aws-keys-pgp: post: description: Create a AwsKeysPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeysPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPgp: Create auth' tags: - Auths /auth/aws-keys-pgp/{id}: get: description: Get a AwsKeysPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPgp: Get auth' tags: - Auths put: description: Update a AwsKeysPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeysPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPgp: Update auth' tags: - Auths /auth/aws-keys-public-pgp: post: description: Create a AwsKeysPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeysPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPublicPgp: Create auth' tags: - Auths /auth/aws-keys-public-pgp/{id}: get: description: Get a AwsKeysPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPublicPgp: Get auth' tags: - Auths put: description: Update a AwsKeysPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeysPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeysPublicPgp: Update auth' tags: - Auths /auth/aws-keys/{id}: get: description: Get a AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeys: Get auth' tags: - Auths put: description: Update a AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AwsKeys: Update auth' tags: - Auths /auth/aws-s3-redshift: post: description: Create a Aws_S3_Redshift auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Aws_S3_Redshift' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_S3_Redshift: Create auth' tags: - Auths /auth/aws-s3-redshift/{id}: get: description: Get a Aws_S3_Redshift auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_S3_Redshift: Get auth' tags: - Auths put: description: Update a Aws_S3_Redshift auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Aws_S3_Redshift' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Aws_S3_Redshift: Update auth' tags: - Auths /auth/azure-event-hub: post: description: Create a AzureEventHub auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzureEventHub' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureEventHub: Create auth' tags: - Auths /auth/azure-event-hub/{id}: get: description: Get a AzureEventHub auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureEventHub: Get auth' tags: - Auths put: description: Update a AzureEventHub auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzureEventHub' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureEventHub: Update auth' tags: - Auths /auth/azure-storage-connection: post: description: Create a AzureStorageConnection auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzureStorageConnection' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureStorageConnection: Create auth' tags: - Auths /auth/azure-storage-connection/{id}: get: description: Get a AzureStorageConnection auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureStorageConnection: Get auth' tags: - Auths put: description: Update a AzureStorageConnection auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzureStorageConnection' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzureStorageConnection: Update auth' tags: - Auths /auth/azuresql-db: post: description: Create a AzuresqlDb auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzuresqlDb' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzuresqlDb: Create auth' tags: - Auths /auth/azuresql-db/{id}: get: description: Get a AzuresqlDb auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzuresqlDb: Get auth' tags: - Auths put: description: Update a AzuresqlDb auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.AzuresqlDb' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'AzuresqlDb: Update auth' tags: - Auths /auth/basic-auth: post: description: Create a BasicAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BasicAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BasicAuth: Create auth' tags: - Auths /auth/basic-auth/{id}: get: description: Get a BasicAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BasicAuth: Get auth' tags: - Auths put: description: Update a BasicAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BasicAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BasicAuth: Update auth' tags: - Auths /auth/bc-access-token: post: description: Create a BcAccessToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BcAccessToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BcAccessToken: Create auth' tags: - Auths /auth/bc-access-token/{id}: get: description: Get a BcAccessToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BcAccessToken: Get auth' tags: - Auths put: description: Update a BcAccessToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BcAccessToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BcAccessToken: Update auth' tags: - Auths /auth/bluehornet-api-key: post: description: Create a BluehornetApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BluehornetApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BluehornetApiKey: Create auth' tags: - Auths /auth/bluehornet-api-key/{id}: get: description: Get a BluehornetApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BluehornetApiKey: Get auth' tags: - Auths put: description: Update a BluehornetApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BluehornetApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BluehornetApiKey: Update auth' tags: - Auths /auth/bluekai-userkey: post: description: Create a Bluekai_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Bluekai_Userkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userkey: Create auth' tags: - Auths /auth/bluekai-userkey/{id}: get: description: Get a Bluekai_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userkey: Get auth' tags: - Auths put: description: Update a Bluekai_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Bluekai_Userkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userkey: Update auth' tags: - Auths /auth/bluekai-userpass: post: description: Create a Bluekai_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Bluekai_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userpass: Create auth' tags: - Auths /auth/bluekai-userpass/{id}: get: description: Get a Bluekai_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userpass: Get auth' tags: - Auths put: description: Update a Bluekai_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Bluekai_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Bluekai_Userpass: Update auth' tags: - Auths /auth/blueshift-api-key: post: description: Create a BlueshiftApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BlueshiftApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BlueshiftApiKey: Create auth' tags: - Auths /auth/blueshift-api-key/{id}: get: description: Get a BlueshiftApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BlueshiftApiKey: Get auth' tags: - Auths put: description: Update a BlueshiftApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BlueshiftApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BlueshiftApiKey: Update auth' tags: - Auths /auth/bq-jwt: post: description: Create a BqJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BqJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwt: Create auth' tags: - Auths /auth/bq-jwt-import: post: description: Create a BqJwtImport auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BqJwtImport' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwtImport: Create auth' tags: - Auths /auth/bq-jwt-import/{id}: get: description: Get a BqJwtImport auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwtImport: Get auth' tags: - Auths put: description: Update a BqJwtImport auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BqJwtImport' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwtImport: Update auth' tags: - Auths /auth/bq-jwt/{id}: get: description: Get a BqJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwt: Get auth' tags: - Auths put: description: Update a BqJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.BqJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'BqJwt: Update auth' tags: - Auths /auth/braze: post: description: Create a Braze auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Braze' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Braze: Create auth' tags: - Auths /auth/braze/{id}: get: description: Get a Braze auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Braze: Get auth' tags: - Auths put: description: Update a Braze auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Braze' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Braze: Update auth' tags: - Auths /auth/brevo: post: description: Create a Brevo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Brevo' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Brevo: Create auth' tags: - Auths /auth/brevo/{id}: get: description: Get a Brevo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Brevo: Get auth' tags: - Auths put: description: Update a Brevo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Brevo' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Brevo: Update auth' tags: - Auths /auth/cheetah: post: description: Create a Cheetah auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Cheetah' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cheetah: Create auth' tags: - Auths /auth/cheetah/{id}: get: description: Get a Cheetah auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cheetah: Get auth' tags: - Auths put: description: Update a Cheetah auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Cheetah' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cheetah: Update auth' tags: - Auths /auth/clearbit: post: description: Create a Clearbit auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Clearbit' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Clearbit: Create auth' tags: - Auths /auth/clearbit-lytics: post: description: Create a ClearbitLytics auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ClearbitLytics' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ClearbitLytics: Create auth' tags: - Auths /auth/clearbit-lytics/{id}: get: description: Get a ClearbitLytics auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ClearbitLytics: Get auth' tags: - Auths put: description: Update a ClearbitLytics auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ClearbitLytics' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ClearbitLytics: Update auth' tags: - Auths /auth/clearbit/{id}: get: description: Get a Clearbit auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Clearbit: Get auth' tags: - Auths put: description: Update a Clearbit auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Clearbit' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Clearbit: Update auth' tags: - Auths /auth/connect-apikey: post: description: Create a ConnectApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ConnectApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ConnectApikey: Create auth' tags: - Auths /auth/connect-apikey/{id}: get: description: Get a ConnectApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ConnectApikey: Get auth' tags: - Auths put: description: Update a ConnectApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ConnectApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ConnectApikey: Update auth' tags: - Auths /auth/content-cookies: post: description: Create a ContentCookies auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentCookies' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentCookies: Create auth' tags: - Auths /auth/content-cookies/{id}: get: description: Get a ContentCookies auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentCookies: Get auth' tags: - Auths put: description: Update a ContentCookies auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentCookies' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentCookies: Update auth' tags: - Auths /auth/contentstack-api-key: post: description: Create a ContentstackApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentstackApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackApiKey: Create auth' tags: - Auths /auth/contentstack-api-key/{id}: get: description: Get a ContentstackApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackApiKey: Get auth' tags: - Auths put: description: Update a ContentstackApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentstackApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackApiKey: Update auth' tags: - Auths /auth/contentstack-authtoken: post: description: Create a ContentstackAuthtoken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentstackAuthtoken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackAuthtoken: Create auth' tags: - Auths /auth/contentstack-authtoken/{id}: get: description: Get a ContentstackAuthtoken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackAuthtoken: Get auth' tags: - Auths put: description: Update a ContentstackAuthtoken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ContentstackAuthtoken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ContentstackAuthtoken: Update auth' tags: - Auths /auth/cordial: post: description: Create a Cordial auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Cordial' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cordial: Create auth' tags: - Auths /auth/cordial-userpass: post: description: Create a CordialUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CordialUserpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CordialUserpass: Create auth' tags: - Auths /auth/cordial-userpass/{id}: get: description: Get a CordialUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CordialUserpass: Get auth' tags: - Auths put: description: Update a CordialUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CordialUserpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CordialUserpass: Update auth' tags: - Auths /auth/cordial/{id}: get: description: Get a Cordial auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cordial: Get auth' tags: - Auths put: description: Update a Cordial auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Cordial' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Cordial: Update auth' tags: - Auths /auth/criteo-api-credentials: post: description: Create a CriteoApiCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CriteoApiCredentials' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CriteoApiCredentials: Create auth' tags: - Auths /auth/criteo-api-credentials/{id}: get: description: Get a CriteoApiCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CriteoApiCredentials: Get auth' tags: - Auths put: description: Update a CriteoApiCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CriteoApiCredentials' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CriteoApiCredentials: Update auth' tags: - Auths /auth/customerio-apikey: post: description: Create a CustomerioApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CustomerioApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioApikey: Create auth' tags: - Auths /auth/customerio-apikey/{id}: get: description: Get a CustomerioApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioApikey: Get auth' tags: - Auths put: description: Update a CustomerioApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CustomerioApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioApikey: Update auth' tags: - Auths /auth/customerio-webhooks: post: description: Create a CustomerioWebhooks auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CustomerioWebhooks' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioWebhooks: Create auth' tags: - Auths /auth/customerio-webhooks/{id}: get: description: Get a CustomerioWebhooks auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioWebhooks: Get auth' tags: - Auths put: description: Update a CustomerioWebhooks auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.CustomerioWebhooks' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'CustomerioWebhooks: Update auth' tags: - Auths /auth/databricks-db: post: description: Create a DatabricksDB auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DatabricksDB' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DatabricksDB: Create auth' tags: - Auths /auth/databricks-db/{id}: get: description: Get a DatabricksDB auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DatabricksDB: Get auth' tags: - Auths put: description: Update a DatabricksDB auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DatabricksDB' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DatabricksDB: Update auth' tags: - Auths /auth/datax: post: description: Create a Datax auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Datax' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Datax: Create auth' tags: - Auths /auth/datax/{id}: get: description: Get a Datax auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Datax: Get auth' tags: - Auths put: description: Update a Datax auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Datax' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Datax: Update auth' tags: - Auths /auth/dotmailer-api: post: description: Create a DotmailerApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DotmailerApi' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DotmailerApi: Create auth' tags: - Auths /auth/dotmailer-api/{id}: get: description: Get a DotmailerApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DotmailerApi: Get auth' tags: - Auths put: description: Update a DotmailerApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DotmailerApi' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DotmailerApi: Update auth' tags: - Auths /auth/drift-app-key: post: description: Create a DriftAppKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DriftAppKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DriftAppKey: Create auth' tags: - Auths /auth/drift-app-key/{id}: get: description: Get a DriftAppKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DriftAppKey: Get auth' tags: - Auths put: description: Update a DriftAppKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.DriftAppKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'DriftAppKey: Update auth' tags: - Auths /auth/dv360-oauth: post: description: Create a Dv360_Oauth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Dv360_Oauth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Dv360_Oauth: Create auth' tags: - Auths /auth/dv360-oauth/{id}: get: description: Get a Dv360_Oauth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Dv360_Oauth: Get auth' tags: - Auths put: description: Update a Dv360_Oauth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Dv360_Oauth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Dv360_Oauth: Update auth' tags: - Auths /auth/email: post: description: Create a Email auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Email' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Email: Create auth' tags: - Auths /auth/email/{id}: get: description: Get a Email auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Email: Get auth' tags: - Auths put: description: Update a Email auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Email' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Email: Update auth' tags: - Auths /auth/episerver-api-key: post: description: Create a EpiserverApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.EpiserverApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'EpiserverApiKey: Create auth' tags: - Auths /auth/episerver-api-key/{id}: get: description: Get a EpiserverApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'EpiserverApiKey: Get auth' tags: - Auths put: description: Update a EpiserverApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.EpiserverApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'EpiserverApiKey: Update auth' tags: - Auths /auth/fb-system-user: post: description: Create a FbSystemUser auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.FbSystemUser' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'FbSystemUser: Create auth' tags: - Auths /auth/fb-system-user/{id}: get: description: Get a FbSystemUser auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'FbSystemUser: Get auth' tags: - Auths put: description: Update a FbSystemUser auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.FbSystemUser' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'FbSystemUser: Update auth' tags: - Auths /auth/fullcontact: post: description: Create a Fullcontact auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Fullcontact' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Fullcontact: Create auth' tags: - Auths /auth/fullcontact/{id}: get: description: Get a Fullcontact auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Fullcontact: Get auth' tags: - Auths put: description: Update a Fullcontact auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Fullcontact' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Fullcontact: Update auth' tags: - Auths /auth/gcs-jwt: post: description: Create a GcsJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.GcsJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'GcsJwt: Create auth' tags: - Auths /auth/gcs-jwt/{id}: get: description: Get a GcsJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'GcsJwt: Get auth' tags: - Auths put: description: Update a GcsJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.GcsJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'GcsJwt: Update auth' tags: - Auths /auth/gigya: post: description: Create a Gigya auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Gigya' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Gigya: Create auth' tags: - Auths /auth/gigya/{id}: get: description: Get a Gigya auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Gigya: Get auth' tags: - Auths put: description: Update a Gigya auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Gigya' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Gigya: Update auth' tags: - Auths /auth/googleanalytics-no-auth: post: description: Create a Googleanalytics_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Googleanalytics_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Googleanalytics_NoAuth: Create auth' tags: - Auths /auth/googleanalytics-no-auth/{id}: get: description: Get a Googleanalytics_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Googleanalytics_NoAuth: Get auth' tags: - Auths put: description: Update a Googleanalytics_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Googleanalytics_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Googleanalytics_NoAuth: Update auth' tags: - Auths /auth/header-param-auth: post: description: Create a HeaderParamAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.HeaderParamAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'HeaderParamAuth: Create auth' tags: - Auths /auth/header-param-auth/{id}: get: description: Get a HeaderParamAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'HeaderParamAuth: Get auth' tags: - Auths put: description: Update a HeaderParamAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.HeaderParamAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'HeaderParamAuth: Update auth' tags: - Auths /auth/icontact-api: post: description: Create a IcontactApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.IcontactApi' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IcontactApi: Create auth' tags: - Auths /auth/icontact-api/{id}: get: description: Get a IcontactApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IcontactApi: Get auth' tags: - Auths put: description: Update a IcontactApi auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.IcontactApi' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IcontactApi: Update auth' tags: - Auths /auth/infobip-api-key: post: description: Create a InfobipApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.InfobipApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InfobipApiKey: Create auth' tags: - Auths /auth/infobip-api-key/{id}: get: description: Get a InfobipApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InfobipApiKey: Get auth' tags: - Auths put: description: Update a InfobipApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.InfobipApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InfobipApiKey: Update auth' tags: - Auths /auth/insider-api-key: post: description: Create a InsiderApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.InsiderApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InsiderApiKey: Create auth' tags: - Auths /auth/insider-api-key/{id}: get: description: Get a InsiderApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InsiderApiKey: Get auth' tags: - Auths put: description: Update a InsiderApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.InsiderApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'InsiderApiKey: Update auth' tags: - Auths /auth/integration-secret: post: description: Create a IntegrationSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.IntegrationSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IntegrationSecret: Create auth' tags: - Auths /auth/integration-secret/{id}: get: description: Get a IntegrationSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IntegrationSecret: Get auth' tags: - Auths put: description: Update a IntegrationSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.IntegrationSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'IntegrationSecret: Update auth' tags: - Auths /auth/iterable: post: description: Create a Iterable auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Iterable' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Iterable: Create auth' tags: - Auths /auth/iterable/{id}: get: description: Get a Iterable auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Iterable: Get auth' tags: - Auths put: description: Update a Iterable auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Iterable' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Iterable: Update auth' tags: - Auths /auth/klaviyo: post: description: Create a Klaviyo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Klaviyo' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Klaviyo: Create auth' tags: - Auths /auth/klaviyo/{id}: get: description: Get a Klaviyo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Klaviyo: Get auth' tags: - Auths put: description: Update a Klaviyo auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Klaviyo' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Klaviyo: Update auth' tags: - Auths /auth/leadsquared: post: description: Create a Leadsquared auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Leadsquared' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Leadsquared: Create auth' tags: - Auths /auth/leadsquared/{id}: get: description: Get a Leadsquared auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Leadsquared: Get auth' tags: - Auths put: description: Update a Leadsquared auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Leadsquared' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Leadsquared: Update auth' tags: - Auths /auth/lineads-api-secretkey: post: description: Create a LineadsApiSecretkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LineadsApiSecretkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LineadsApiSecretkey: Create auth' tags: - Auths /auth/lineads-api-secretkey/{id}: get: description: Get a LineadsApiSecretkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LineadsApiSecretkey: Get auth' tags: - Auths put: description: Update a LineadsApiSecretkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LineadsApiSecretkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LineadsApiSecretkey: Update auth' tags: - Auths /auth/liveramp-aws-keys: post: description: Create a Liveramp_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_AwsKeys: Create auth' tags: - Auths /auth/liveramp-aws-keys/{id}: get: description: Get a Liveramp_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_AwsKeys: Get auth' tags: - Auths put: description: Update a Liveramp_AwsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_AwsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_AwsKeys: Update auth' tags: - Auths /auth/liveramp-userkey: post: description: Create a Liveramp_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_Userkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userkey: Create auth' tags: - Auths /auth/liveramp-userkey/{id}: get: description: Get a Liveramp_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userkey: Get auth' tags: - Auths put: description: Update a Liveramp_Userkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_Userkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userkey: Update auth' tags: - Auths /auth/liveramp-userpass: post: description: Create a Liveramp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userpass: Create auth' tags: - Auths /auth/liveramp-userpass/{id}: get: description: Get a Liveramp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userpass: Get auth' tags: - Auths put: description: Update a Liveramp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Liveramp_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Liveramp_Userpass: Update auth' tags: - Auths /auth/localytics-keys: post: description: Create a LocalyticsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LocalyticsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LocalyticsKeys: Create auth' tags: - Auths /auth/localytics-keys/{id}: get: description: Get a LocalyticsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LocalyticsKeys: Get auth' tags: - Auths put: description: Update a LocalyticsKeys auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LocalyticsKeys' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LocalyticsKeys: Update auth' tags: - Auths /auth/lytics-aws-sftp-auth: post: description: Create a LyticsAwsSftpAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LyticsAwsSftpAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsAwsSftpAuth: Create auth' tags: - Auths /auth/lytics-aws-sftp-auth/{id}: get: description: Get a LyticsAwsSftpAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsAwsSftpAuth: Get auth' tags: - Auths put: description: Update a LyticsAwsSftpAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LyticsAwsSftpAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsAwsSftpAuth: Update auth' tags: - Auths /auth/lytics-lotame-s3: post: description: Create a LyticsLotameS3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LyticsLotameS3' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsLotameS3: Create auth' tags: - Auths /auth/lytics-lotame-s3/{id}: get: description: Get a LyticsLotameS3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsLotameS3: Get auth' tags: - Auths put: description: Update a LyticsLotameS3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.LyticsLotameS3' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'LyticsLotameS3: Update auth' tags: - Auths /auth/mailgun-api-key: post: description: Create a MailgunApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MailgunApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MailgunApiKey: Create auth' tags: - Auths /auth/mailgun-api-key/{id}: get: description: Get a MailgunApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MailgunApiKey: Get auth' tags: - Auths put: description: Update a MailgunApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MailgunApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MailgunApiKey: Update auth' tags: - Auths /auth/mandrill-api-key: post: description: Create a MandrillApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MandrillApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MandrillApiKey: Create auth' tags: - Auths /auth/mandrill-api-key/{id}: get: description: Get a MandrillApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MandrillApiKey: Get auth' tags: - Auths put: description: Update a MandrillApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MandrillApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MandrillApiKey: Update auth' tags: - Auths /auth/mapp-userpass: post: description: Create a Mapp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Mapp_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mapp_Userpass: Create auth' tags: - Auths /auth/mapp-userpass/{id}: get: description: Get a Mapp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mapp_Userpass: Get auth' tags: - Auths put: description: Update a Mapp_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Mapp_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mapp_Userpass: Update auth' tags: - Auths /auth/marketingcloud-v2: post: description: Create a MarketingcloudV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MarketingcloudV2' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketingcloudV2: Create auth' tags: - Auths /auth/marketingcloud-v2/{id}: get: description: Get a MarketingcloudV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketingcloudV2: Get auth' tags: - Auths put: description: Update a MarketingcloudV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MarketingcloudV2' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketingcloudV2: Update auth' tags: - Auths /auth/marketo-client: post: description: Create a MarketoClient auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MarketoClient' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketoClient: Create auth' tags: - Auths /auth/marketo-client/{id}: get: description: Get a MarketoClient auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketoClient: Get auth' tags: - Auths put: description: Update a MarketoClient auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MarketoClient' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MarketoClient: Update auth' tags: - Auths /auth/maropost: post: description: Create a Maropost auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Maropost' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Maropost: Create auth' tags: - Auths /auth/maropost/{id}: get: description: Get a Maropost auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Maropost: Get auth' tags: - Auths put: description: Update a Maropost auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Maropost' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Maropost: Update auth' tags: - Auths /auth/mediamath-no-auth: post: description: Create a Mediamath_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Mediamath_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mediamath_NoAuth: Create auth' tags: - Auths /auth/mediamath-no-auth/{id}: get: description: Get a Mediamath_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mediamath_NoAuth: Get auth' tags: - Auths put: description: Update a Mediamath_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Mediamath_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Mediamath_NoAuth: Update auth' tags: - Auths /auth/messagecentral: post: description: Create a Messagecentral auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Messagecentral' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Messagecentral: Create auth' tags: - Auths /auth/messagecentral/{id}: get: description: Get a Messagecentral auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Messagecentral: Get auth' tags: - Auths put: description: Update a Messagecentral auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Messagecentral' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Messagecentral: Update auth' tags: - Auths /auth/microsoft-capi-token: post: description: Create a MicrosoftCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MicrosoftCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MicrosoftCapiToken: Create auth' tags: - Auths /auth/microsoft-capi-token/{id}: get: description: Get a MicrosoftCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MicrosoftCapiToken: Get auth' tags: - Auths put: description: Update a MicrosoftCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MicrosoftCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MicrosoftCapiToken: Update auth' tags: - Auths /auth/mixpanel-api-secret: post: description: Create a MixpanelApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MixpanelApiSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MixpanelApiSecret: Create auth' tags: - Auths /auth/mixpanel-api-secret/{id}: get: description: Get a MixpanelApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MixpanelApiSecret: Get auth' tags: - Auths put: description: Update a MixpanelApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MixpanelApiSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MixpanelApiSecret: Update auth' tags: - Auths /auth/mp-api-secret: post: description: Create a MpApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MpApiSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MpApiSecret: Create auth' tags: - Auths /auth/mp-api-secret/{id}: get: description: Get a MpApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MpApiSecret: Get auth' tags: - Auths put: description: Update a MpApiSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.MpApiSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'MpApiSecret: Update auth' tags: - Auths /auth/netsuite-suitetalk: post: description: Create a NetsuiteSuitetalk auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.NetsuiteSuitetalk' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NetsuiteSuitetalk: Create auth' tags: - Auths /auth/netsuite-suitetalk/{id}: get: description: Get a NetsuiteSuitetalk auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NetsuiteSuitetalk: Get auth' tags: - Auths put: description: Update a NetsuiteSuitetalk auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.NetsuiteSuitetalk' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NetsuiteSuitetalk: Update auth' tags: - Auths /auth/newrelic-insights-apikey: post: description: Create a NewrelicInsightsApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.NewrelicInsightsApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NewrelicInsightsApikey: Create auth' tags: - Auths /auth/newrelic-insights-apikey/{id}: get: description: Get a NewrelicInsightsApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NewrelicInsightsApikey: Get auth' tags: - Auths put: description: Update a NewrelicInsightsApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.NewrelicInsightsApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'NewrelicInsightsApikey: Update auth' tags: - Auths /auth/onesignal: post: description: Create a Onesignal auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Onesignal' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Onesignal: Create auth' tags: - Auths /auth/onesignal/{id}: get: description: Get a Onesignal auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Onesignal: Get auth' tags: - Auths put: description: Update a Onesignal auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Onesignal' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Onesignal: Update auth' tags: - Auths /auth/optimizely-odp-api-key: post: description: Create a OptimizelyOdpApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.OptimizelyOdpApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'OptimizelyOdpApiKey: Create auth' tags: - Auths /auth/optimizely-odp-api-key/{id}: get: description: Get a OptimizelyOdpApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'OptimizelyOdpApiKey: Get auth' tags: - Auths put: description: Update a OptimizelyOdpApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.OptimizelyOdpApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'OptimizelyOdpApiKey: Update auth' tags: - Auths /auth/pinterest-capi-token: post: description: Create a PinterestCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.PinterestCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PinterestCapiToken: Create auth' tags: - Auths /auth/pinterest-capi-token/{id}: get: description: Get a PinterestCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PinterestCapiToken: Get auth' tags: - Auths put: description: Update a PinterestCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.PinterestCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PinterestCapiToken: Update auth' tags: - Auths /auth/postup: post: description: Create a Postup auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Postup' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Postup: Create auth' tags: - Auths /auth/postup/{id}: get: description: Get a Postup auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Postup: Get auth' tags: - Auths put: description: Update a Postup auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Postup' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Postup: Update auth' tags: - Auths /auth/pubsub-jwt: post: description: Create a PubsubJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.PubsubJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PubsubJwt: Create auth' tags: - Auths /auth/pubsub-jwt/{id}: get: description: Get a PubsubJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PubsubJwt: Get auth' tags: - Auths put: description: Update a PubsubJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.PubsubJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'PubsubJwt: Update auth' tags: - Auths /auth/pushly: post: description: Create a Pushly auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Pushly' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Pushly: Create auth' tags: - Auths /auth/pushly/{id}: get: description: Get a Pushly auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Pushly: Get auth' tags: - Auths put: description: Update a Pushly auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Pushly' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Pushly: Update auth' tags: - Auths /auth/reddit-conversion: post: description: Create a RedditConversion auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RedditConversion' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedditConversion: Create auth' tags: - Auths /auth/reddit-conversion/{id}: get: description: Get a RedditConversion auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedditConversion: Get auth' tags: - Auths put: description: Update a RedditConversion auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RedditConversion' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedditConversion: Update auth' tags: - Auths /auth/redshift-postgresql: post: description: Create a RedshiftPostgresql auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RedshiftPostgresql' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedshiftPostgresql: Create auth' tags: - Auths /auth/redshift-postgresql/{id}: get: description: Get a RedshiftPostgresql auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedshiftPostgresql: Get auth' tags: - Auths put: description: Update a RedshiftPostgresql auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RedshiftPostgresql' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RedshiftPostgresql: Update auth' tags: - Auths /auth/responsys-interact: post: description: Create a ResponsysInteract auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysInteract' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysInteract: Create auth' tags: - Auths /auth/responsys-interact/{id}: get: description: Get a ResponsysInteract auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysInteract: Get auth' tags: - Auths put: description: Update a ResponsysInteract auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysInteract' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysInteract: Update auth' tags: - Auths /auth/responsys-sftp: post: description: Create a ResponsysSftp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysSftp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftp: Create auth' tags: - Auths /auth/responsys-sftp-with-pgp: post: description: Create a ResponsysSftpWithPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysSftpWithPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftpWithPgp: Create auth' tags: - Auths /auth/responsys-sftp-with-pgp/{id}: get: description: Get a ResponsysSftpWithPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftpWithPgp: Get auth' tags: - Auths put: description: Update a ResponsysSftpWithPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysSftpWithPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftpWithPgp: Update auth' tags: - Auths /auth/responsys-sftp/{id}: get: description: Get a ResponsysSftp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftp: Get auth' tags: - Auths put: description: Update a ResponsysSftp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ResponsysSftp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ResponsysSftp: Update auth' tags: - Auths /auth/retentionscience-key: post: description: Create a RetentionscienceKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RetentionscienceKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RetentionscienceKey: Create auth' tags: - Auths /auth/retentionscience-key/{id}: get: description: Get a RetentionscienceKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RetentionscienceKey: Get auth' tags: - Auths put: description: Update a RetentionscienceKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.RetentionscienceKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'RetentionscienceKey: Update auth' tags: - Auths /auth/s3: post: description: Create a S3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.S3' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'S3: Create auth' tags: - Auths /auth/s3/{id}: get: description: Get a S3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'S3: Get auth' tags: - Auths put: description: Update a S3 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.S3' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'S3: Update auth' tags: - Auths /auth/sailthru-api-key: post: description: Create a SailthruApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SailthruApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SailthruApiKey: Create auth' tags: - Auths /auth/sailthru-api-key/{id}: get: description: Get a SailthruApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SailthruApiKey: Get auth' tags: - Auths put: description: Update a SailthruApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SailthruApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SailthruApiKey: Update auth' tags: - Auths /auth/salesforce-data-cloud-jwt: post: description: Create a SalesforceDataCloudJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceDataCloudJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudJwt: Create auth' tags: - Auths /auth/salesforce-data-cloud-jwt/{id}: get: description: Get a SalesforceDataCloudJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudJwt: Get auth' tags: - Auths put: description: Update a SalesforceDataCloudJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceDataCloudJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudJwt: Update auth' tags: - Auths /auth/salesforce-data-cloud-sandbox-jwt: post: description: Create a SalesforceDataCloudSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceDataCloudSandboxJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudSandboxJwt: Create auth' tags: - Auths /auth/salesforce-data-cloud-sandbox-jwt/{id}: get: description: Get a SalesforceDataCloudSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudSandboxJwt: Get auth' tags: - Auths put: description: Update a SalesforceDataCloudSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceDataCloudSandboxJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceDataCloudSandboxJwt: Update auth' tags: - Auths /auth/salesforce-jwt: post: description: Create a SalesforceJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceJwt: Create auth' tags: - Auths /auth/salesforce-jwt/{id}: get: description: Get a SalesforceJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceJwt: Get auth' tags: - Auths put: description: Update a SalesforceJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceJwt: Update auth' tags: - Auths /auth/salesforce-sandbox-jwt: post: description: Create a SalesforceSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceSandboxJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceSandboxJwt: Create auth' tags: - Auths /auth/salesforce-sandbox-jwt/{id}: get: description: Get a SalesforceSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceSandboxJwt: Get auth' tags: - Auths put: description: Update a SalesforceSandboxJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SalesforceSandboxJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SalesforceSandboxJwt: Update auth' tags: - Auths /auth/secretkey-v2: post: description: Create a SecretkeyV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SecretkeyV2' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SecretkeyV2: Create auth' tags: - Auths /auth/secretkey-v2/{id}: get: description: Get a SecretkeyV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SecretkeyV2: Get auth' tags: - Auths put: description: Update a SecretkeyV2 auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SecretkeyV2' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SecretkeyV2: Update auth' tags: - Auths /auth/selligent-userpass: post: description: Create a Selligent_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Selligent_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Selligent_Userpass: Create auth' tags: - Auths /auth/selligent-userpass/{id}: get: description: Get a Selligent_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Selligent_Userpass: Get auth' tags: - Auths put: description: Update a Selligent_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Selligent_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Selligent_Userpass: Update auth' tags: - Auths /auth/sendgrid: post: description: Create a Sendgrid auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Sendgrid' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Sendgrid: Create auth' tags: - Auths /auth/sendgrid/{id}: get: description: Get a Sendgrid auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Sendgrid: Get auth' tags: - Auths put: description: Update a Sendgrid auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Sendgrid' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Sendgrid: Update auth' tags: - Auths /auth/shopify-api-token: post: description: Create a ShopifyApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ShopifyApiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ShopifyApiToken: Create auth' tags: - Auths /auth/shopify-api-token/{id}: get: description: Get a ShopifyApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ShopifyApiToken: Get auth' tags: - Auths put: description: Update a ShopifyApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ShopifyApiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ShopifyApiToken: Update auth' tags: - Auths /auth/silverpop-full-auth: post: description: Create a SilverpopFullAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SilverpopFullAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SilverpopFullAuth: Create auth' tags: - Auths /auth/silverpop-full-auth/{id}: get: description: Get a SilverpopFullAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SilverpopFullAuth: Get auth' tags: - Auths put: description: Update a SilverpopFullAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SilverpopFullAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SilverpopFullAuth: Update auth' tags: - Auths /auth/snapchat-capi-token: post: description: Create a SnapchatCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnapchatCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnapchatCapiToken: Create auth' tags: - Auths /auth/snapchat-capi-token/{id}: get: description: Get a SnapchatCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnapchatCapiToken: Get auth' tags: - Auths put: description: Update a SnapchatCapiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnapchatCapiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnapchatCapiToken: Update auth' tags: - Auths /auth/snowflake-direct: post: description: Create a SnowflakeDirect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnowflakeDirect' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirect: Create auth' tags: - Auths /auth/snowflake-direct-gcs: post: description: Create a SnowflakeDirectGcs auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnowflakeDirectGcs' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirectGcs: Create auth' tags: - Auths /auth/snowflake-direct-gcs/{id}: get: description: Get a SnowflakeDirectGcs auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirectGcs: Get auth' tags: - Auths put: description: Update a SnowflakeDirectGcs auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnowflakeDirectGcs' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirectGcs: Update auth' tags: - Auths /auth/snowflake-direct/{id}: get: description: Get a SnowflakeDirect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirect: Get auth' tags: - Auths put: description: Update a SnowflakeDirect auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SnowflakeDirect' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SnowflakeDirect: Update auth' tags: - Auths /auth/sparkpost-api-key: post: description: Create a SparkpostApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SparkpostApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SparkpostApiKey: Create auth' tags: - Auths /auth/sparkpost-api-key/{id}: get: description: Get a SparkpostApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SparkpostApiKey: Get auth' tags: - Auths put: description: Update a SparkpostApiKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.SparkpostApiKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'SparkpostApiKey: Update auth' tags: - Auths /auth/stackdriver-jwt: post: description: Create a StackdriverJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.StackdriverJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'StackdriverJwt: Create auth' tags: - Auths /auth/stackdriver-jwt/{id}: get: description: Get a StackdriverJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'StackdriverJwt: Get auth' tags: - Auths put: description: Update a StackdriverJwt auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.StackdriverJwt' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'StackdriverJwt: Update auth' tags: - Auths /auth/surveymonkey: post: description: Create a Surveymonkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Surveymonkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Surveymonkey: Create auth' tags: - Auths /auth/surveymonkey/{id}: get: description: Get a Surveymonkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Surveymonkey: Get auth' tags: - Auths put: description: Update a Surveymonkey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Surveymonkey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Surveymonkey: Update auth' tags: - Auths /auth/thetradedesk-api-token: post: description: Create a ThetradedeskApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ThetradedeskApiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ThetradedeskApiToken: Create auth' tags: - Auths /auth/thetradedesk-api-token/{id}: get: description: Get a ThetradedeskApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ThetradedeskApiToken: Get auth' tags: - Auths put: description: Update a ThetradedeskApiToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.ThetradedeskApiToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'ThetradedeskApiToken: Update auth' tags: - Auths /auth/thetradedesk-userpass: post: description: Create a Thetradedesk_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Thetradedesk_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Thetradedesk_Userpass: Create auth' tags: - Auths /auth/thetradedesk-userpass/{id}: get: description: Get a Thetradedesk_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Thetradedesk_Userpass: Get auth' tags: - Auths put: description: Update a Thetradedesk_Userpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Thetradedesk_Userpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Thetradedesk_Userpass: Update auth' tags: - Auths /auth/tiktok-events-token: post: description: Create a TiktokEventsToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.TiktokEventsToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TiktokEventsToken: Create auth' tags: - Auths /auth/tiktok-events-token/{id}: get: description: Get a TiktokEventsToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TiktokEventsToken: Get auth' tags: - Auths put: description: Update a TiktokEventsToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.TiktokEventsToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TiktokEventsToken: Update auth' tags: - Auths /auth/trigger-userpass: post: description: Create a TriggerUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.TriggerUserpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TriggerUserpass: Create auth' tags: - Auths /auth/trigger-userpass/{id}: get: description: Get a TriggerUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TriggerUserpass: Get auth' tags: - Auths put: description: Update a TriggerUserpass auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.TriggerUserpass' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'TriggerUserpass: Update auth' tags: - Auths /auth/twitter-oauth1-0a: post: description: Create a Twitter_oauth1_0a auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Twitter_oauth1_0a' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Twitter_oauth1_0a: Create auth' tags: - Auths /auth/twitter-oauth1-0a/{id}: get: description: Get a Twitter_oauth1_0a auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Twitter_oauth1_0a: Get auth' tags: - Auths put: description: Update a Twitter_oauth1_0a auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Twitter_oauth1_0a' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Twitter_oauth1_0a: Update auth' tags: - Auths /auth/user-pass-key: post: description: Create a UserPassKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserPassKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserPassKey: Create auth' tags: - Auths /auth/user-pass-key/{id}: get: description: Get a UserPassKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserPassKey: Get auth' tags: - Auths put: description: Update a UserPassKey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserPassKey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserPassKey: Update auth' tags: - Auths /auth/userpass-private-pgp: post: description: Create a UserpassPrivatePgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassPrivatePgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPrivatePgp: Create auth' tags: - Auths /auth/userpass-private-pgp/{id}: get: description: Get a UserpassPrivatePgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPrivatePgp: Get auth' tags: - Auths put: description: Update a UserpassPrivatePgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassPrivatePgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPrivatePgp: Update auth' tags: - Auths /auth/userpass-public-pgp: post: description: Create a UserpassPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPublicPgp: Create auth' tags: - Auths /auth/userpass-public-pgp/{id}: get: description: Get a UserpassPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPublicPgp: Get auth' tags: - Auths put: description: Update a UserpassPublicPgp auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassPublicPgp' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassPublicPgp: Update auth' tags: - Auths /auth/userpass-secret: post: description: Create a UserpassSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassSecret: Create auth' tags: - Auths /auth/userpass-secret/{id}: get: description: Get a UserpassSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassSecret: Get auth' tags: - Auths put: description: Update a UserpassSecret auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.UserpassSecret' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'UserpassSecret: Update auth' tags: - Auths /auth/versium-apikey: post: description: Create a VersiumApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.VersiumApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'VersiumApikey: Create auth' tags: - Auths /auth/versium-apikey/{id}: get: description: Get a VersiumApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'VersiumApikey: Get auth' tags: - Auths put: description: Update a VersiumApikey auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.VersiumApikey' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'VersiumApikey: Update auth' tags: - Auths /auth/webhook-no-auth: post: description: Create a Webhook_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Webhook_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_NoAuth: Create auth' tags: - Auths /auth/webhook-no-auth/{id}: get: description: Get a Webhook_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_NoAuth: Get auth' tags: - Auths put: description: Update a Webhook_NoAuth auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Webhook_NoAuth' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_NoAuth: Update auth' tags: - Auths /auth/webhook-oauth2-client-credentials: post: description: Create a Webhook_Oauth2_ClientCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Webhook_Oauth2_ClientCredentials' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_Oauth2_ClientCredentials: Create auth' tags: - Auths /auth/webhook-oauth2-client-credentials/{id}: get: description: Get a Webhook_Oauth2_ClientCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_Oauth2_ClientCredentials: Get auth' tags: - Auths put: description: Update a Webhook_Oauth2_ClientCredentials auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Webhook_Oauth2_ClientCredentials' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Webhook_Oauth2_ClientCredentials: Update auth' tags: - Auths /auth/westfield: post: description: Create a Westfield auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Westfield' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Westfield: Create auth' tags: - Auths /auth/westfield/{id}: get: description: Get a Westfield auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Westfield: Get auth' tags: - Auths put: description: Update a Westfield auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Westfield' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Westfield: Update auth' tags: - Auths /auth/wistia-token: post: description: Create a WistiaToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.WistiaToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'WistiaToken: Create auth' tags: - Auths /auth/wistia-token/{id}: get: description: Get a WistiaToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'WistiaToken: Get auth' tags: - Auths put: description: Update a WistiaToken auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.WistiaToken' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'WistiaToken: Update auth' tags: - Auths /auth/yesmail: post: description: Create a Yesmail auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Yesmail' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Yesmail: Create auth' tags: - Auths /auth/yesmail/{id}: get: description: Get a Yesmail auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Yesmail: Get auth' tags: - Auths put: description: Update a Yesmail auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Yesmail' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Yesmail: Update auth' tags: - Auths /auth/zuora: post: description: Create a Zuora auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Zuora' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '201': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Zuora: Create auth' tags: - Auths /auth/zuora/{id}: get: description: Get a Zuora auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Zuora: Get auth' tags: - Auths put: description: Update a Zuora auth parameters: - description: The account ID. Defaults to the user's default account. in: query name: account_id schema: type: string - description: The Authorization ID in: path name: id required: true schema: type: string requestBody: content: '*/*': schema: allOf: - $ref: '#/components/schemas/models.AuthRequest' - properties: config: $ref: '#/components/schemas/models.Zuora' type: object description: The Authorization Configuration required: true x-originalParamName: job responses: '200': content: application/json: schema: allOf: - $ref: '#/components/schemas/models.ApiResponse' - properties: data: $ref: '#/components/schemas/models.AuthResponse' type: object description: Authorization Response '404': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Not Found '500': content: application/json: schema: $ref: '#/components/schemas/models.ApiErrorResponse' description: Internal Server Error security: - ApiKeyAuth: [] summary: 'Zuora: Update auth' tags: - Auths components: schemas: models.SparkpostApiKey: properties: apikey: description: 'You can create an API Key by logging into SparkPost and clicking on Account. Make sure to enable Event Webhooks: Read/Write permission' type: string type: object models.Aws_S3_Redshift: properties: access_key: type: string connection_url: type: string password: type: string secret_key: type: string ssl_mode: type: string user: type: string type: object models.Bluekai_Userkey: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string partner_name: description: Partner name that BlueKai recognizes you with. type: string port: type: integer privatekey: type: string site_id: description: Site ID provided by the BlueKai type: integer user: type: string type: object models.IntegrationSecret: properties: api_url: description: The API URL of your Mapp instance (should include everything **up to but not including** /api/v1...) type: string integration_id: type: string secret: type: string type: object models.ShopifyApiToken: properties: subdomain: description: Get this from Shopify account UI type: string token: type: string type: object models.LineadsApiSecretkey: properties: access_key: description: '#nosec G117 -- field carries the LINE Ads API Access Key (kid), provided by the customer.' type: string secret_key: description: LINE Ads API Secret Key. Used to HMAC-SHA256 sign each request via JWS. type: string type: object models.MicrosoftCapiToken: properties: token: type: string type: object models.Mediamath_NoAuth: type: object models.RedshiftPostgresql: properties: connection_url: type: string password: type: string ssl_mode: type: string user: type: string type: object models.AwsKeysPgp: properties: access_key: type: string pgppassphrase: type: string pgpprivatekey: type: string secret_key: type: string type: object models.Liveramp_Userkey: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string passphrase: type: string port: type: integer privatekey: type: string user: type: string type: object models.Webhook_Oauth2_ClientCredentials: properties: access_token_manager_id: type: string client_id: type: string client_secret: type: string scope: type: string token_endpoint: type: string webhook_request_headers: type: string webhook_request_params: type: string type: object models.AwsKeys: properties: access_key: type: string secret_key: type: string type: object models.GcsJwt: properties: cert_json: type: string type: object models.ResponsysInteract: properties: instance: description: One of interact2, interact5, or interact8 type: string password: type: string username: type: string type: object models.Twitter_oauth1_0a: properties: code: type: string oauth_token: type: string oauth_verifier: type: string scope: type: string type: object models.AirshipConnect: properties: access_token: type: string app_key: type: string project_location: type: string type: object models.Bluekai_Userpass: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string partner_name: description: Partner name that BlueKai recognizes you with. type: string password: type: string port: type: integer site_id: description: Site ID provided by the BlueKai type: integer user: type: string type: object models.Liveramp_Userpass: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string password: type: string port: type: integer user: type: string type: object models.PinterestCapiToken: properties: account_id: type: string token: type: string type: object models.IcontactApi: properties: api_password: type: string api_username: type: string type: object models.RetentionscienceKey: properties: api_key: type: string type: object models.DriftAppKey: properties: app_key: type: string type: object models.SnowflakeDirect: properties: account_name: description: 'Enter your Snowflake account locator, ex. `xy12345.us-east-2.aws`. Be sure to format the locator according to your cloud platform and region, as described here: https://docs.snowflake.com/en/user-guide/admin-account-identifier.html#locator-formats-by-cloud-platform-and-region' type: string database: type: string password: type: string private_key: type: string role: type: string user_name: type: string warehouse: type: string type: object models.MixpanelApiSecret: properties: apisecret: type: string type: object models.Webhook_NoAuth: type: object models.EpiserverApiKey: properties: client_id: description: Client ID provided by Episerver type: string user_api_key: type: string user_name: description: API User Name type: string type: object models.Googleanalytics_NoAuth: type: object models.MarketingcloudV2: properties: account_id: type: string auth_uri: type: string client_id: type: string client_secret: type: string type: object models.CriteoApiCredentials: properties: client_id: type: string client_secret: type: string type: object models.SnowflakeDirectGcs: properties: account_name: description: 'Enter your Snowflake account locator, ex. `xy12345.us-east-2.aws`. Be sure to format the locator according to your cloud platform and region, as described here: https://docs.snowflake.com/en/user-guide/admin-account-identifier.html#locator-formats-by-cloud-platform-and-region' type: string database: type: string password: type: string private_key: type: string role: type: string service_account: type: string storage_integration: type: string user_name: type: string warehouse: type: string type: object models.BqJwtImport: properties: cert_json: type: string type: object models.CustomerioApikey: properties: apikey: type: string site_id: type: string type: object models.MandrillApiKey: properties: apikey: type: string type: object models.UserpassPrivatePgp: properties: folder: description: Relative path to the folder containing the csv. Leave blank to retrieve the csv from the home directory. type: string host: type: string passphrase: description: Enter passphrase for the private key if any type: string password: description: Enter password. Please leave this empty if you would want to use private key type: string pgppassphrase: type: string pgpprivatekey: type: string port: type: integer privatekey: description: Enter private key. Please leave this empty if you would want to use password type: string user: type: string type: object models.FbSystemUser: properties: access_token: type: string ads_account_id: type: string type: object models.DatabricksDB: properties: host: type: string httppath: type: string port: type: integer token: type: string type: object models.AzuresqlDb: properties: database: type: string password: type: string port: type: string server: type: string user: type: string type: object models.Clearbit: properties: apikey: type: string type: object models.NewrelicInsightsApikey: properties: api_key: type: string type: object models.SnapchatCapiToken: properties: token: description: 'Paste a long-lived Snapchat Conversions API token. Generate this in Snapchat Ads Manager under Business Details → Conversions API Tokens (requires Organization Admin). Recommended for Conversions API exports: the token does not expire and is not subject to the Marketing API throughput limit.' type: string type: object models.Apikey: properties: apikey: type: string email: type: string subdomain: description: Get this from Zendesk account UI type: string type: object models.ResponsysSftpWithPgp: properties: folder: description: Folder path to place files type: string host: type: string pgppassphrase: type: string pgpprivatekey: type: string port: type: integer privatekey: type: string user: type: string type: object models.Braze: properties: apikey: type: string instance: description: Select the instance of Braze your account uses. For more on how to find your instance please read our docs about Braze. type: string type: object models.ClearbitLytics: type: object models.AttentiveApiKey: properties: api_key: description: '#nosec G117 -- field holds the Attentive API key, not a leaked credential' type: string type: object models.Selligent_Userpass: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string password: type: string port: type: integer user: type: string type: object models.Dv360_Oauth: properties: code: type: string scope: type: string type: object models.AwsDelegatedPublicPgp: properties: pgppublickey: type: string type: object models.Mapp_Userpass: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string password: type: string port: type: integer user: type: string type: object models.Maropost: properties: account: type: integer apikey: type: string type: object models.SalesforceDataCloudJwt: properties: consumer_key: description: The Consumer Key from your Salesforce External Client App type: string my_domain_url: description: The org My Domain URL the JWT assertion is POSTed to type: string private_key: description: '#nosec [G117] RSA private key in PEM format' type: string sf_username: description: The Salesforce username of the authorized user type: string type: object models.S3: properties: access_key: type: string bucket: type: string secret_key: type: string type: object models.Fullcontact: properties: apikey: type: string type: object models.CordialUserpass: properties: api_key: type: string folder: description: Folder path to place files. Deafult is named cordial type: string host: type: string password: type: string port: type: integer user: type: string type: object models.Brevo: properties: apikey: type: string type: object models.LocalyticsKeys: properties: api_key: type: string api_secret: type: string type: object models.Datax: properties: mdm_id: type: string use_gdpr: type: string type: object models.ContentstackAuthtoken: properties: authtoken: type: string base_url: type: string region: type: string type: object models.AppsflyerDevkey: properties: app_id: type: string dev_key: type: string platform: type: string type: object models.Gigya: properties: api_key: type: string datacenter: type: string secret_key: type: string user_key: description: User & Secret Key pair are located in your Account Settings type: string type: object models.MailgunApiKey: properties: apikey: type: string domain: type: string type: object models.MarketoClient: properties: clientId: type: string clientSecret: type: string restUrl: type: string type: object models.SalesforceJwt: properties: consumer_key: description: The Consumer Key from your Salesforce External Client App type: string my_domain_url: description: The org My Domain URL the JWT assertion is POSTed to type: string private_key: description: '#nosec [G117] RSA private key in PEM format' type: string sf_username: description: The Salesforce username of the authorized user type: string type: object models.Cordial: properties: api_key: type: string type: object models.CustomerioWebhooks: type: object models.BluehornetApiKey: properties: api_key: type: string secret: type: string type: object models.ApiErrorResponse: properties: errors: description: Lytics API Errors items: $ref: '#/components/schemas/lioerrors.ApiV2ErrorOut' type: array request_id: type: string status: description: HTTP Status Code type: integer type: object models.InsiderApiKey: properties: apikey: type: string type: object models.AwsDelegated: type: object models.Iterable: properties: apikey: type: string type: object models.ApiResponse: properties: _meta: additionalProperties: true description: Response Metadata type: object data: description: Response Payload type: object request_id: type: string status: description: HTTP Status Code type: integer type: object models.Cheetah: properties: consumer_key: type: string consumer_secret: type: string region: type: string type: object models.UserPassKey: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string passphrase: description: Enter passphrase for the private key if any type: string password: description: Enter password. Please leave this empty if you would want to use private key type: string port: type: integer privatekey: description: Enter private key. Please leave this empty if you would want to use password type: string user: type: string type: object models.Zuora: properties: partner: type: string password: type: string username: type: string type: object models.BasicAuth: properties: password: type: string url: description: Specify an arbitrary URL that requires basic authentication to access. This will validate that the credentials provided have correct permissions to access basic authenticated URLs. type: string username: type: string type: object models.TiktokEventsToken: properties: token: type: string type: object models.SalesforceDataCloudSandboxJwt: properties: consumer_key: description: The Consumer Key from your Salesforce External Client App type: string my_domain_url: description: The sandbox My Domain URL the JWT assertion is POSTed to type: string private_key: description: '#nosec [G117] RSA private key in PEM format' type: string sf_username: description: The Salesforce username of the authorized user type: string type: object models.Email: type: object models.SalesforceSandboxJwt: properties: consumer_key: description: The Consumer Key from your Salesforce External Client App type: string my_domain_url: description: The sandbox My Domain URL the JWT assertion is POSTed to type: string private_key: description: '#nosec [G117] RSA private key in PEM format' type: string sf_username: description: The Salesforce username of the authorized user type: string type: object models.Pushly: properties: apikey: type: string domain_id: type: string type: object models.ConnectApikey: properties: apikey: type: string type: object models.RedditConversion: properties: access_token: type: string type: object models.OptimizelyOdpApiKey: properties: api_key: description: '#nosec G117 -- field holds the ODP API key, not a leaked credential' type: string type: object models.Klaviyo: properties: api_key: type: string type: object models.Yesmail: properties: apikey: type: string apiuser: type: string type: object models.SecretkeyV2: properties: secret_key: type: string type: object models.Sendgrid: properties: apikey: type: string type: object models.Postup: properties: password: type: string username: type: string type: object models.PubsubJwt: properties: cert_json: type: string type: object models.TriggerUserpass: properties: password: type: string rest_api_url: description: The API URL of your Mapp instance (should include everything **up to but not including** /api/rest/v17...) type: string user: type: string type: object models.ResponsysSftp: properties: folder: description: Folder path to place files type: string host: type: string port: type: integer privatekey: type: string user: type: string type: object models.Api: properties: apikey: type: string personalkey: type: string type: object lioerrors.ApiV2ErrorOut: properties: code: description: Lytics Error Code enum: - UNKNOWN-000 - BADREQ-001 - JOB-BADREQ-002 - NOTFOUND-003 - JOB-NOTFOUND-004 - WF-NOTFOUND-005 - AUTH-NOTFOUND-006 - AUTHTYPE-NOTFOUND-007 - AUTH-BADREQ-008 - TABLE-NOTFOUND-009 - SCHEMA-NOTFOUND-010 - SCHEMAVERSION-NOTFOUND-011 - ENTITY-NOTFOUND-012 - QUERY-NOTFOUND-013 - STREAM-NOTFOUND-014 - PROVIDER-BADREQ-015 - PROVIDER-NOTFOUND-016 - UNAUTHORIZED-017 - SCHEMA-INVALID-018 - INTERNAL-019 - ROUTERULE-NOTFOUND-020 - ACCOUNT-NOTFOUND-021 - JOB-FAULT-022 - USER-NOTFOUND-023 - USER-BADREQ-024 - JSON-BADREQ-025 - FORBIDDEN-026 type: string level: description: When the error was generated type: string message: description: A description of the error that occurred type: string timestamp: description: The time the error occurred format: date-time type: string type: object models.Liveramp_AwsKeys: properties: access_key: type: string secret_key: type: string type: object models.BqJwt: properties: cert_json: type: string type: object models.AlgoliaApiKey: properties: api_key: description: An API key with the search, browse and recommendation ACL permissions type: string application_id: description: Enter your Algolia application ID type: string type: object models.Surveymonkey: properties: access_token: type: string type: object models.BlueshiftApiKey: properties: user_api_key: type: string type: object models.InfobipApiKey: properties: apikey: description: '#nosec G117 -- field carries the Infobip API key, provided by the customer.' type: string base_url: description: Per-account host, e.g. xyz123.api.infobip.com type: string type: object models.HeaderParamAuth: properties: webhook_request_headers: description: 'Enter headers for the webhook POST request. Add a new line for each header as key:value e.g. `Authorization: some-token`' type: string webhook_request_params: description: Enter URL parameters for the webhook POST request. e.g. `param-key1=value1¶m-key2=value2` type: string type: object models.AwsDelegatedPgp: properties: pgppassphrase: type: string pgpprivatekey: type: string type: object models.ContentstackApiKey: properties: base_url: type: string delivery_token: type: string management_token: type: string region: type: string stack_api_key: type: string type: object models.WistiaToken: properties: apikey: type: string type: object models.Aws_AwsKeys: properties: access_key: type: string secret_key: type: string type: object models.AwsKeysPublicPgp: properties: access_key: type: string pgppublickey: type: string secret_key: type: string type: object models.LyticsAwsSftpAuth: properties: host: type: string passphrase: description: Enter passphrase for the private key if any type: string password: description: Enter desired password. Must be between 8 to 32 characters and include at least one uppercase letter, lowercase letter, number and special character. **NOTE:** Either password or public key must be provided type: string port: type: string privatekey: description: Enter SSH private key. **NOTE:** When using public key, private key must be provided. type: string publickey: description: Enter SSH public key. **NOTE:** Either password or public key must be provided type: string user: description: Enter username. Must be between 3 to 32 characters. Username can have characters a-z, A-Z, 0-9, hyphen(-), underscore(_). It cannot start with hyphen(-) type: string type: object models.SilverpopFullAuth: properties: client_id: type: string client_secret: type: string pod: type: string refresh_token: type: string sftp_password: type: string sftp_user: type: string type: object models.ThetradedeskApiToken: properties: token: description: Paste a long-lived The Trade Desk API token. Generate this in the TTD platform under your account's API tokens section. Use this when you have a token issued for the Conversion API and do not want to share TTD username/password credentials. type: string type: object models.AmplitudeApiKey: properties: apikey: type: string apisecret: type: string type: object models.StackdriverJwt: properties: cert_json: type: string type: object models.UserpassPublicPgp: properties: folder: description: Relative path to the folder to place the csv. Leave blank to place the csv in the home directory. type: string host: type: string passphrase: description: Enter passphrase for the private key if any type: string password: description: Enter password. Please leave this empty if you would want to use private key type: string pgppublickey: type: string port: type: integer privatekey: description: Enter private key. Please leave this empty if you would want to use password type: string user: type: string type: object models.Onesignal: properties: apikey: type: string type: object models.Westfield: properties: api_key: type: string client_id: type: string client_secret: type: string type: object models.SailthruApiKey: properties: apikey: type: string apisecret: type: string type: object models.AzureEventHub: properties: connection_string: type: string type: object models.MpApiSecret: properties: api_secret: type: string type: object models.NetsuiteSuitetalk: properties: account_id: type: string consumer_key: type: string consumer_secret: type: string token_key: type: string token_secret: type: string type: object models.Thetradedesk_Userpass: properties: partner_id: description: Enter your The Trade Desk Partner ID. This Partner ID is used during experience import and is different than The Trade Desk Advertiser ID type: string password: type: string secret_key: description: Enter your The Trade Desk Partner Secret Key type: string username: type: string type: object models.Leadsquared: properties: accessKey: type: string region: description: chooose which LeadSquared region you created your account on. This determines which API Host we connect with type: string secretKey: type: string type: object models.VersiumApikey: properties: apikey: type: string type: object models.AzureStorageConnection: properties: aes_iv: description: Optional - add an AES intialization vector (IV) as a hex string in conjunction with the AES key above type: string aes_key: description: Optional - add an AES key as a hex string to AES-encrypt specified fields in the Azure blob files type: string connection_string: type: string pgppublickey: description: Optional - add a PGP public key to encrypt Azure blob files type: string type: object models.Messagecentral: properties: apikey: type: string orgid: type: string type: object models.ContentCookies: properties: cookie: description: Specify a fully formatted cookie (e.g. COOKIE_NAME=COOKIE_VALUE). type: string url: description: Specify an arbitrary URL that requires cookie authentication to access. This will validate that the cookie provided has permissions to access authenticated URLs. type: string type: object models.UserpassSecret: properties: api_url: description: The API URL of your Mapp instance (should include everything **up to but not including** /api/v1/integration...) type: string integration_id: type: string password: type: string rest_api_url: description: The API URL of your Mapp instance (should include everything **up to but not including** /api/rest/v17...) type: string secret: type: string user: type: string type: object models.LyticsLotameS3: type: object models.AuthResponse: properties: account_id: description: Lytics Account ID type: string created: type: string description: description: A client-defined description for the authorization type: string id: description: A Lytics-assigned, immutable unique ID for the Authorization type: string label: description: A client-defined label for the authorization type: string last_accessed_at: description: Last accessed time for the lytics api_key type: string provider_id: description: The authorization's provider ID type: string provider_slug: description: The authorization's provider slug type: string status: description: Indicates the health status of auth enum: - healthy - unhealthy - unknown type: string type: description: The auth type. Providers may have one or more auth types type: string unhealthy: description: Indicates the authorization credentials are unusable type: boolean updated: type: string user_id: description: The user ID that created or updated the authorization type: string type: object models.AuthRequest: properties: account_id: description: Lytics Account ID type: string config: description: The type-specific configuration for the authorization description: description: A client-defined description for the authorization type: string label: description: A client-defined label for the authorization type: string provider_id: description: The authorization's provider ID type: string provider_slug: description: The authorization's provider slug type: string type: description: The auth type. Providers may have one or more auth types type: string user_id: description: The user ID that created or updated the authorization type: string required: - config - label type: object models.DotmailerApi: properties: password: type: string username: type: string type: object models.BcAccessToken: properties: access_token: description: Your access token must have read-access scopes to Customers and Orders for imports and modify scope to Customers and read-access scope to Orders for exports type: string store_hash: description: Enter your unique store hash ID type: string type: object models.AirshipMasterSecret: properties: app_key: type: string master_secret: type: string project_location: type: string type: object securitySchemes: ApiKeyAuth: in: header name: Authorization type: apiKey