Get Started
Application
Equipment
Request
User
Article
Unarchive an Article
PATCH
/
v1
/
articles
/
{uid}
/
unarchive
curl --request PATCH \
--url https://api.siit.io/v1/articles/{uid}/unarchive \
--header 'Authorization: Bearer <token>'
{
"result": {
"uid": "<string>",
"title": "<string>",
"subtitle": "<string>",
"source": "external",
"author_uid": "<string>",
"last_editor_uid": "<string>",
"published": true,
"external_url": "<string>",
"body": "<string>",
"category_uid": "<string>",
"category": {
"uid": "<string>",
"name": "<string>"
},
"archived_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
}
Usage
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The UID of the Article
Response
200 - application/json
Successful
The response is of type object
.
curl --request PATCH \
--url https://api.siit.io/v1/articles/{uid}/unarchive \
--header 'Authorization: Bearer <token>'
{
"result": {
"uid": "<string>",
"title": "<string>",
"subtitle": "<string>",
"source": "external",
"author_uid": "<string>",
"last_editor_uid": "<string>",
"published": true,
"external_url": "<string>",
"body": "<string>",
"category_uid": "<string>",
"category": {
"uid": "<string>",
"name": "<string>"
},
"archived_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.