- 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
GET
/directory/retrieve-directory/{directoryName}
Directory
Retrieve Directory.
Both directory name and short name can be used here.
Request
Path Params
directoryName
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/retrieve-directory/' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
id
string
optional
Example:
example_directory_id
name
string
optional
Example:
example_directory_name
shortName
string
optional
Example:
example_directory_short_name
profileId
string
optional
Example:
example_directory_owner_profile_id
createdAt
string
optional
Example:
2025-02-10T10:03:06+00:00
Example
{
"id": "example_directory_id",
"name": "example_directory_name",
"shortName": "example_directory_short_name",
"profileId": "example_directory_owner_profile_id",
"createdAt": "2025-02-10T10:03:06+00:00"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-03-06 13:01:35