Projects > Images Content (deleted)


{danger} Only feature type images (image_type = 6) can be used

Store

POST : /api/designnest/v1/projects/{projectID}/images/{imageID}/contents

projectID : the ID of the current project

imageID : the ID of the current image

Request :

{
    "project" : {
        "image" : {
            "title" : '' ,
            "content" : ''
        }
    }
}

title : Title of image

content : Title of image

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "id" => 0
    ]
}

Update

PATCH : /api/designnest/v1/projects/{projectID}/images/{imageID}/contents/{contentID}

projectID : the ID of the current project

imageID : the ID of the current image

contentID : contentID == imageID

Request :

{
    "project" : {
        "image" : {
            "title" : '' ,
            "content" : ''
        }
    }
}

title : Title of image

content : Title of image

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "id" => 0
    ]
}