- 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
Directory profiles info
GET
/directory/{directoryId}/profiles-info
Directory
Request
Path Params
directoryId
string
required
Example:
Query Params
page
integer
optional
Example:
offset
integer
optional
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//profiles-info' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
items
array [object {11}]
optional
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
directoryId
string
optional
Example:
example_directory_id
directoryName
string
optional
Example:
example_directory_name
directoryShortName
string
optional
Example:
example_directory_short_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
meta
object (meta)
optional
page
integer
optional
Example:
1
perPage
integer
optional
Example:
25
count
integer
optional
Example:
1
maxPage
integer
optional
Example:
1
Example
{
"items": [
{
"profileId": "example_profile_id",
"username": "example_username",
"givenName": "example_given_name",
"familyName": "example_family_name",
"directoryId": "example_directory_id",
"directoryName": "example_directory_name",
"directoryShortName": "example_directory_short_name",
"configuredDevices": 0,
"unconfiguredDevices": 1,
"totalDevices": 1,
"createdAt": "2025-02-10T10:03:06+00:00"
}
],
"meta": {
"page": 1,
"perPage": 25,
"count": 1,
"maxPage": 1
}
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
Modified at 2025-03-06 13:01:35