- Privicore API
- Utility
- Profile
- OAuth Application
- Public key
- Data Token
- Device
- Storage
- Verified authenticator
- Policy
- Directory
- Register DirectoryPOST
- Retrieve owned DirectoriesGET
- Retrieve assigned directoriesGET
- Retrieve DirectoryGET
- Create Directory UserPOST
- Update user informationPOST
- Invite ProfilePOST
- Set profile passwordPOST
- List Directory InvitesGET
- Process InvitationPOST
- Retrieve directory profileGET
- List directory usersGET
- Directory profiles infoGET
- Create profile devicePOST
- Add storage device to profilePOST
- List directory devicesGET
- Create directory voting poolPOST
- Store directory meta informationPOST
- Voting
Retrieve directory profile
GET
/directory/{directoryId}/profile/{profileId}
Directory
Request
Path Params
directoryId
string
required
Example:
profileId
string
required
Example:
Header Params
X-DPT-AUTHORIZATION
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 GET 'https://mobileapp.privicore.com:9009/directory//profile/' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
profileId
string
optional
Example:
example_profile_id
username
string
optional
Example:
example_username
givenName
string
optional
Example:
example_given_name
familyName
string
optional
Example:
example_family_name
configuredDevices
integer
optional
Example:
0
unconfiguredDevices
integer
optional
Example:
1
totalDevices
integer
optional
Example:
1
createdAt
string
optional
Example:
2025-02-10T10:03:06+00:00
Example
{
"profileId": "example_profile_id",
"username": "example_username",
"givenName": "example_given_name",
"familyName": "example_family_name",
"configuredDevices": 0,
"unconfiguredDevices": 1,
"totalDevices": 1,
"createdAt": "2025-02-10T10:03:06+00:00"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
Modified at 2025-03-06 13:01:35