Available in VPC
Get the list of person tags.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /api/v1/workspaces/{workspace_name}/person-tags |
Request headers
For information about the headers common to all Media Intelligence APIs, see Media Intelligence request headers.
Request path parameters
You can use the following path parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
workspace_name |
String | Required | Workspace name |
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
id |
Integer | Optional | Person tag ID |
name |
String | Optional | Person tag name
|
pageNum |
Integer | Required | Page number
|
pageSize |
Integer | Optional | Number of items per page
|
Request example
The request example is as follows:
curl --location --request GET 'https://mi.apigw.ntruss.com/api/v1/workspaces/my-workspace/person-tags?pageNum=1&pageSize=10' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
code |
String | Required | API processing result code |
message |
String | Required | API processing result message |
result |
Object | Required | API return information |
result.content |
Array | Required | Person tag list |
result.totalCount |
Integer | Required | Total person tag count |
result.totalPage |
Integer | Required | Total number of pages |
result.pageNo |
Integer | Required | Page number |
result.pageSize |
Integer | Required | Number of items per page |
result.content
The following describes the result.content item.
| Field | Type | Required | Description |
|---|---|---|---|
id |
Integer | Required | Person tag ID |
name |
String | Required | Person tag name |
updatedUserName |
String | Required | User name who last edited the tag |
updatedTime |
String | Required | Tag modification date and time
|
Response status codes
For information about the HTTP status codes common to all Media Intelligence APIs, see Media Intelligence response status codes.
Response example
The response example is as follows:
{
"code": "0",
"message": "success",
"result": {
"content": [
{
"id": 1001,
"name": "Anchor",
"updatedUserName": "*dong Hong",
"updatedTime": ""2025-08-15T17:13:48""
},
{
"id": 1002,
"name": "Singer",
"updatedUserName": "*su Kim",
"updatedTime": "2025-08-16T03:22:11.198Z"
}
],
"totalCount": 2,
"totalPage": 1,
"pageNo": 1,
"pageSize": 10
}