- 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 assigned directories
GET
/directory/retrieve-assigned-directories
Directory
Request
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/retrieve-assigned-directories' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
array of:
id
string
optional
Example:
example_directory_profile_id
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
createdAt
string
optional
Example:
2025-02-10T10:03:06+00:00
Example
[
{
"id": "example_directory_profile_id",
"givenName": "example_given_name",
"familyName": "example_family_name",
"directoryId": "example_directory_id",
"directoryName": "example_directory_name",
"directoryShortName": "example_directory_short_name",
"createdAt": "2025-02-10T10:03:06+00:00"
}
]
🟠401Unauthorized
Modified at 2025-03-06 13:01:35