- Privicore API
- Utility
- Profile
- OAuth Application
- Public key
- Data Token
- Device
- Storage
- Verified authenticator
- Policy
- Directory
- Register Directory
- Retrieve owned Directories
- Retrieve assigned directories
- Retrieve Directory
- Create Directory User
- Update user information
- Invite Profile
- Set profile password
- List Directory Invites
- Process Invitation
- Retrieve directory profile
- List directory users
- Directory profiles info
- Create profile device
- Add storage device to profile
- List directory devices
- Create directory voting pool
- Store directory meta information
- Voting
List data tokens
GET
/data-token/list-data-tokens
Data Token
Request
Query Params
page
integer
optional
Example:
offset
integer
optional
Example:
filters[meta.file.fileName]
string
optional
Example:
filters[meta.file.extension]
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/data-token/list-data-tokens' \
--header 'X-DPT-AUTHORIZATION;'
Responses
🟢200OK
application/json
Body
items
array [object {7}]
optional
token
string
optional
Example:
example_data_token
profileId
string
optional
Example:
example_profile_id
context
string
optional
Example:
example_context
dataSize
integer
optional
Example:
15
outputType
enum<integer>
optional
Allowed values:
01
meta
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": [
{
"token": "example_data_token",
"profileId": "example_profile_id",
"context": "example_context",
"dataSize": 15,
"outputType": 0,
"meta": [
"string"
],
"createdAt": "2025-02-10T10:03:06+00:00"
}
],
"meta": {
"page": 1,
"perPage": 25,
"count": 1,
"maxPage": 1
}
}
🟠401Unauthorized
🟠422Parameter Error
Modified at 2025-03-06 13:01:35