- 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
List directory devices
GET
/directory/{directoryId}/list-devices
Directory
Request
Path Params
directoryId
string
required
Example:
Query Params
page
integer
optional
Example:
offset
integer
optional
Example:
filters[configured]
integer
optional
Example:
filters[profile]
string
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//list-devices' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
items
array [object {7}]
optional
deviceIdentifier
string
optional
Example:
example_device_identifier
profileId
string
optional
Example:
example_profile_id
configured
integer
optional
Example:
0
status
enum<integer>
optional
Allowed values:
10
metaName
string
optional
Example:
example_meta_name
metaSecurityLabel
array[string]
optional
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": [
{
"deviceIdentifier": "example_device_identifier",
"profileId": "example_profile_id",
"configured": 0,
"status": 1,
"metaName": "example_meta_name",
"metaSecurityLabel": [
"string"
],
"createdAt": "2025-02-10T10:03:06+00:00"
}
],
"meta": {
"page": 1,
"perPage": 25,
"count": 1,
"maxPage": 1
}
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-03-06 13:01:35