API Method /performers/modify
Modifies an existing performer.
Arguments
- authentication
- This method requires user authentication.
- id string
- The ID of the performer object to modify.
- name string
- The name of this performer. (optional, defaults to original name)
- short_bio string
- A short biography of this performer.
- long_bio string
- A detailed biography of this performer. (optional)
- tags string
- A space-delimited list of tags. (optional)
Example Request
Here's an example request URL:
http://api.eventful.com/rest/performers/modify?...&id=P0-001-000002272-8&short_bio=Something+different.
Output Parameters
Output from this function is an XML block with the following constructs:
- status string
- ok
- messagestring
- Performer modified successfully.
- idstring
- The performer ID of the modified performer.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<message>Performer modified successfully.</message>
<id>P0-001-000002272-8</id>
</response>
Error Codes
This method may return these errors in an error document:
- Authentication error
- The specified user was not found or provided invalid credentials.
- Missing parameter
- The 'id' parameter is mandatory.
- Not found
- There is no performer with that identifier.
- Write access denied
- You do not have permission to edit this performer.