Show a specific profile
get/v1/profiles/{id}
Show a specific profile
Request
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| id* | path | integer | No description |
Responses
200No description
- Schema
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"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"
},
"updated_at": {
"type": "string"
}
},
"required": [
"id",
"key",
"name",
"description",
"metadata",
"is_active",
"created_at",
"updated_at"
]
}
},
"required": [
"success",
"data"
]
}