- Privicore API
- Utility
- Profile
- OAuth Application
- Public key
- Data Token
- Device
- Storage
- Verified authenticator
- Policy
- Directory
- Register Directory
- Retrieve owned Directories
- Retrieve assigned directories
- Retrieve Directory
- Create Directory User
- Update user information
- Invite Profile
- Set profile password
- List Directory Invites
- Process Invitation
- Retrieve directory profile
- List directory users
- Directory profiles info
- Create profile device
- Add storage device to profile
- List directory devices
- Create directory voting pool
- Store directory meta information
- Voting
Obtain OAuth app access token
POST
/oauth-application/obtain-access-token
OAuth Application
Request
Header Params
Authorization
string
required
Example:
Basic {{oauth_autorization_code}}
Body Params application/x-www-form-urlencoded
authorization_code
string
required
Example:
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mobileapp.privicore.com:9009/oauth-application/obtain-access-token' \
--header 'Authorization;' \
--data-urlencode 'authorization_code='
Responses
🟢200OK
application/json
Body
clientId
string
optional
Example:
example_client_id
token
string
optional
Example:
example_access_token
refreshToken
string
optional
Example:
example_refresh_token
type
string
optional
Example:
bearer
scope
string
optional
Example:
all
expiresAt
string
optional
Example:
2025-02-10T10:03:06+00:00
refreshTokenExpiresAt
string
optional
Example:
2025-02-10T10:03:06+00:00
Example
{
"clientId": "example_client_id",
"token": "example_access_token",
"refreshToken": "example_refresh_token",
"type": "bearer",
"scope": "all",
"expiresAt": "2025-02-10T10:03:06+00:00",
"refreshTokenExpiresAt": "2025-02-10T10:03:06+00:00"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
Modified at 2025-03-06 13:01:35