GET

Get OAuth App


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves an OAuth app by ID.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Headless Manage
Manage OAuth Apps
Read OAuth Apps
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/oauth-app/v1/oauth-apps/{oAuthAppId}

Path Params
oAuthAppIdstringRequired

ID of the OAuth app to retrieve.

Response Object
oAuthAppOAuthApp

Retrieved OAuth app info.

Get an OAuth app by ID
Request
cURL
curl -X GET \ 'https://www.wixapis.com/oauth-app/v1/oauth-apps/adddb436-aa2c-474a-8f0e-af719f3acd5b' \ -H 'Authorization: <AUTH> \ -H 'Content-Type: application/json' \
Response
JSON
{ "oAuthApp": { "id": "adddb436-aa2c-474a-8f0e-af719f3acd5b", "createdDate": "2023-03-28T13:43:48.959Z", "name": "Test app", "description": "Some test app", "allowedRedirectDomains": [], "loginUrl": "", "logoutUrl": "", "allowedRedirectUris": [], "applicationType": "OAUTH_APP_TYPE_UNSPECIFIED", "technology": "OAUTH_APP_TECHNOLOGY_UNSPECIFIED" } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?