createPost
post
/ccadmin/v1/posts
Create Post. Creates a new Announcement. While creating a new Announcement, type parameter should be set to 'announcementPost'.
Request
Supported Media Types
- application/json
Body Parameter
Root Schema : createPost_request
{
"active":"true",
"message":"New Announcent # 2",
"type":"announcementPost"
}
- active
-
Type:
stringSpecify default status for new Announcement. Possible values are 'true' or 'false'. Default value is 'true' - message
-
Type:
stringRequired:trueSpecify new Announcement message rich text String - type
-
Type:
stringRequired:trueSpecify type of the post to create.
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : createPost_response
- active
-
Type:
booleanIndicates whether a Announcement post is active. - creationDate
-
Type:
stringThe creation date of the Announcement post. - id
-
Type:
stringThe Announcement post Id. - lastModifiedDate
-
Type:
stringThe date on which the Announcement post was last modified. - message
-
Type:
stringThe Announcement post text. - repositoryId
-
Type:
stringThe repository id of the Announcement post. - type
-
Type:
stringThe type of the Announcement post item.
Example application/json
{
"lastModifiedDate":"2015-04-28T09:32:18.335Z",
"repositoryId":"100002",
"active":true,
"links":[
{
"rel":"self",
"href":"http://some.machine.example.com:9080/ccadminui/v1/posts"
}
],
"id":"100002",
"message":"New Announcent # 2
\n",
"creationDate":"2015-04-28T09:32:18.335Z",
"type":"announcementPost"
}
Default Response
The error response.
The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
|Error Code|Description|
|------------------|------------------|
|200205|Invalid Announcement post type is passed.|
|200204|Post Type Input is null or empty.|
|200206|Internal error occured|
|200146|Post data is not available in input.|
|200147|Post message is null or empty.|
Body
Root Schema : errorModel
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - errors
-
Type:
arrayerrorsAn optional list of errors if multiple errors were encountered - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code - type
-
Type:
stringThe URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code
Examples
Sample Request:
{
"active": "true",
"message": "New Announcent # 2",
"type": "announcementPost"
}
Sample Response Payload returned by endpoint:
{
"lastModifiedDate": "2015-04-28T09:32:18.335Z",
"repositoryId": "100002",
"active": true,
"links": [{
"rel": "self",
"href": "http://some.machine.example.com:9080/ccadminui/v1/posts"
}],
"id": "100002",
"message": "<p>New Announcent # 2<\/p>\n",
"creationDate": "2015-04-28T09:32:18.335Z",
"type": "announcementPost"
}