> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: OAuth Apps # Type: O Auth App Object # Link: https://dev.wix.com/docs/api-reference/business-management/headless/oauth-apps/o-auth-app-object.md ## Description: An intermediary application that authorizes and authenticates an external client to access data on a Wix project or site. ## Schema: ```json Type: O Auth App Object | type: OAuthApp Description: An intermediary application that authorizes and authenticates an external client to access data on a Wix project or site. - name: id | type: string | description: ID of the OAuth app. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the OAuth app was created, in ISO 8601 format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: name | type: string | description: Display name of the OAuth app, as it appears in the dashboard. - name: description | type: string | description: Description of the OAuth app, as it appears in the dashboard. - name: secret | type: string | description: For internal use only. - name: loginUrl | type: string | description: External login URL to which users are redirected automatically to authenticate. If no login URL is specified, the user is redirected to Wix to authenticate. - name: allowedRedirectUris | type: Array | description: List of URIs to which redirection from Wix is allowed after authentication. When a client redirects a user to Wix for authentication, the client provides a URI to redirect the user back to after the user has been authenticated. Wix only redirects the user if the exact URI is contained in this array. - name: allowedRedirectDomains | type: Array | description: List of domains to which redirection from Wix is allowed after processes other than authentication. When a client redirects a user to a Wix page (for example, for checkout), the client provides a URL to redirect the user back to. Wix only redirects the user if the URL is in one of the specified domains. - name: allowSecretGeneration | type: boolean | description: For internal use only. - name: value | type: boolean | description: - name: logoutUrl | type: string | description: External logout URL to which we invoke when user logout at wix. If no logout URL is specified, the user is logged out only at Wix. - name: applicationType | type: string | description: OAuth application type. enum: OAUTH_APP_TYPE_UNSPECIFIED, WEB_APP, MOBILE, OTHER - name: technology | type: string | description: OAuth technology used by the oauth application. enum: OAUTH_TECHNOLOGY_UNSPECIFIED, JAVASCRIPT, ANGULAR, VUE, REACT, REACT_NATIVE, IOS, ANDROID, OTHER_TECHNOLOGY - name: wixPagesDomainsMappings | type: Array | description: List of domain mappings from external domains to Wix domains. When a user accesses a non-Wix domain, they can be automatically forwarded to the corresponding Wix domain based on these mappings. This enables domain-level redirection from external domains to Wix-hosted pages. - name: origin | type: string | description: - name: destination | type: string | description: - name: redirectUrlWixPages | type: string | description: Redirect url for Wix-hosted pages. ```