GET : /api/designnest/v1/projects/{projectID}/faqs
projectID : the ID of the current project
{
"code" : 1 ,
"message" : "" ,
"data" : [
"list" : [
{
"id": 0,
"title": "",
"content": ""
},
...
]
]
}
POST : /api/designnest/v1/projects/{projectID}/faqs
projectID : the ID of the current project
{
"project" : {
"faq" : {
"title" : '' ,
"content" : ''
}
}
}
title : Title of FAQ
content : Content of FAQ
{
"code" : 1 ,
"message" : "" ,
"data" : [
"id" => 0 ,
]
}
PATCH : /api/designnest/v1/projects/{projectID}/faqs/{faqID}
projectID : the ID of the current project
faqID : the ID of the current FAQ
{
"project" : {
"faq" : {
"title" : '' ,
"content" : ''
}
}
}
title : Title of FAQ
content : Content of FAQ
{
"code" : 1 ,
"message" : "" ,
"data" : [
"id" => 0 ,
]
}
DELETE : /api/designnest/v1/projects/{projectID}/faqs/{faqID}
projectID : the ID of the current project
faqID : the ID of the current FAQ
{
"code" : 1 ,
"message" : "" ,
"data" : [
"id" => 0 ,
]
}