Get the appication contents with the specific content-id
200 response
400 response
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "content": {
- "text": "string",
- "hash": "string",
- "metadata": {
- "tag": "string"
}, - "id": "string"
}
}
}
Replace an existing application content
200 response
403 response
{- "text": "string",
- "hash": "stringstringstringstringstringst",
- "metadata": { },
- "document": { }
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "app-id": "string",
- "cid": "string"
}
}
Delete the application content with the specific content-id
200 response
400 response
The request is forbidden (Please input a valid API key)
Input application ID not found
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "cid": "string",
- "message": "string"
}
}
List all contents of the specific application
200 response
400 response
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "cids": [
- "string"
]
}
}
Create a new contents for the specific application
200 response
Invalid request body
The request is forbidden (Please input a valid API key)
{- "text": "Hello there, can I sit there. How are you.",
- "hash": "123456789012345678901234567890_11"
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "cid": "string"
}
}