POST speakers/update
Update an speaker
URL:
http://mobileroadie.com/api/speakers/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. Typically used for the name of the speaker, but can be any text.
-
-
title_right
-
Typically used for a last name when title is use for the first name, but can be any text.
-
-
subtext
-
Typically used for company name or website.
-
-
description
-
Typically used for bio of the speaker. This field can accept HTML.
-
-
img
-
Full URL to a image of the speaker.
-
-
grouping
-
Typically used to group speakers together by last name.
-
-
category_id
-
Category ID to assign to this content
-
Usage Example
<?php $data = array( 'secret' => 'your_secret_key', 'id' => '12345', 'title' => 'John', 'title_right' => 'Smith', 'subtext' => 'Mobile Roadie', 'description' => 'Bio of John Smith', 'img' => 'http://mobileroadie.com/img/default-image.png', 'grouping' => 'S', 'category_id' => '1' ); $handle = curl_init("https://mobileroadie.com/api/speakers/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.