You can update a content item by sending the POST request to the following URL: /content/<content_item_id>.

Permission to run the request: Account Owner, Administrator, Organization Administrator, Publisher.

 

Request Headers

ParameterDescription
X-Auth-Account-Url (required)Base URL of the account, e.g. http://myaccount.ispringlearn.com
X-Auth-Email (required)Administrator/Publisher e-mail address.
X-Auth-Password (required)Administrator/Publisher password.
X-Title (required)A title of the specified content item.
X-Description (optional)A description of the specified content item.

After the request has been completed, the system returns the response with Code 200.

 

Possible Response Codes

CodeTextDescription
404Unknown content itemThe specified content item was not found.
400Bad RequestThe system failed to process the request, because it did not contain all necessary parameters.
403Duplicated titleA content item with the specified title already exists.
200OkThe specified content item has been updated.

Sample Request

POST /content/1 HTTP/1.1
Host: api.ispringonline.com
X-Auth-Account-Url: http://myaccount.ispringlearn.com
X-Auth-Email: email@email.com
X-Auth-Password: password
X-Title: title
X-Description: description
XML

Sample Response

HTTP/1.1 200 OK
Connection: close
XML