Skip to main content

Show a specific profile

get/v1/profiles/{id}

Show a specific profile

Request

Parameters

NameInTypeDescription
id*pathintegerNo description

Responses

200No description
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"
]
}