POST news/update
Update a news article.
URL:
http://mobileroadie.com/api/news/update
Formats
XML, JSON, HTML
Requirements
SSL, API Secret, White-Listed IP Address
HTTP Method(s):
POST
URL Parameter(s):
-
key
-
Required
-
POST Parameters:
-
secret
-
Required.
-
-
id
-
Required. Id of existing entry.
-
-
title
-
Required. Title of the post.
-
-
description
-
Required. Body of the post. This can contain HTML.
-
-
image_url
-
Image to be used as a thumbnail
-
-
created
-
Time created, if empty, it will be automatically generated.
-
-
category_id
-
Category ID to assign to this content
-
Usage Example
<?php $data = array( 'secret' => 'your_secret_key', 'id' => '13245', 'title' => 'New Album Out Now!', 'description' => 'This is the body of the post. <b>It can contain HTML</b>', 'image_url' => 'http://mobileroadie.com/img/default-image.png', 'created' => '2010-01-01 01:01:01', 'category_id' => '1' ); $handle = curl_init("https://mobileroadie.com/api/news/update/key/4d4ba30d73b77f7"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); $response = curl_exec($handle); curl_close($handle); ?>
Success Response
<xml> <id>1234567890</id> </xml>
Response when Missing Required Fields
<xml> <error>[FieldName1] is required. [FieldNameX] is required.</error> </xml>
Comments
0 comments
Please sign in to leave a comment.