Request
The primary key for each resource.
Body Params application/vnd.api+json
The primary key for each resource.
{
"data": {
"id": "FID001",
"type": "Tag",
"attributes": {
"label": "string",
"facet": "exam",
"feedback": "string",
"isVisibleToStudents": true
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"tagSet": {
"data": {
"id": "FID001",
"type": "TagSet"
}
}
}
}
}
Request samples
curl --location --request PATCH 'https://api.synap.ac/v3/tags/' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"id": "FID001",
"type": "Tag",
"attributes": {
"label": "string",
"facet": "exam",
"feedback": "string",
"isVisibleToStudents": true
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"tagSet": {
"data": {
"id": "FID001",
"type": "TagSet"
}
}
}
}
}'
Responses
The primary key for each resource.
{
"data": {
"id": "FID001",
"type": "Tag",
"attributes": {
"label": "string",
"facet": "exam",
"feedback": "string",
"isVisibleToStudents": true
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"tagSet": {
"data": {
"id": "FID001",
"type": "TagSet"
}
}
}
}
}
Modified at 2025-07-08 10:51:21