Skip to main content

List all profile keys for authenticated user

get/v1/profiles

List all profile keys for authenticated user

Responses

200No description
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"metadata": {
"type": "string"
},
"is_active": {
"type": "string"
},
"created_at": {
"type": "string"
}
},
"required": [
"id",
"key",
"name",
"description",
"metadata",
"is_active",
"created_at"
]
}
}
},
"required": [
"success",
"data"
]
}