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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .last-synced-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f0d19381b1dc3e3616d978049deca90ea0332ee3
3a8ccd2466bc01294ef6a412d98863f8dd68dd43
74 changes: 40 additions & 34 deletions spec/open-api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35908,40 +35908,46 @@ components:
example:
- oauth
credentials:
type: object
properties:
type:
type: string
enum:
- custom
- organization
description: >-
The credentials type. `custom` uses your own OAuth app
credentials; `organization` has each organization supply its own
credentials (so `client_id`/`redacted_client_secret` are null on
the integration itself).
example: custom
client_id:
type:
- string
- 'null'
description: >-
The OAuth client ID configured for the provider app. Null for
`organization` credentials.
example: Iv1.abc123
redacted_client_secret:
type:
- string
- 'null'
description: >-
The last four characters of the OAuth client secret. The full
secret is never returned. Null for `organization` credentials.
example: '6789'
required:
- type
- client_id
- redacted_client_secret
description: The credentials configured for the Data Integration.
description: >-
The integration-level OAuth app credentials. `null` for `api_key`
integrations, which hold no OAuth credentials (keys are installed
per-tenant).
oneOf:
- type: object
properties:
type:
type: string
enum:
- custom
- organization
description: >-
The credentials type. `custom` uses your own OAuth app
credentials; `organization` has each organization supply its
own credentials (so `client_id`/`redacted_client_secret` are
null on the integration itself).
example: custom
client_id:
type:
- string
- 'null'
description: >-
The OAuth client ID configured for the provider app. Null
for `organization` credentials.
example: Iv1.abc123
redacted_client_secret:
type:
- string
- 'null'
description: >-
The last four characters of the OAuth client secret. The
full secret is never returned. Null for `organization`
credentials.
example: '6789'
required:
- type
- client_id
- redacted_client_secret
- type: 'null'
installation:
description: >-
The tenant installation created when an API key was supplied at
Expand Down
Loading