Method: PUT
Path: /publishing_destinations/:publishing_destination_id
Host: http://360services.sorensonmedia.com
Date: date
Authorization: <account_id>:<token>
Header Values:
- publishing_destination_id: The ID of the publishing destination to update
Optional Parameters:
- service: A text field that describes the publishing destination; possible values include ftp, sftp, akamai, limelight, and s3
- service_uri: The URI to the service (e.g. ftp.limelight.com); not needed if service is set to "s3"
- service_port: The port to which to connect for the service
- username: The username needed for logging into the service
- password: The password needed for logging into the service
- name: A user-defined name for the publishing destination
The following values will be returned by the server:
- status: Result of the request; will be set to either "success" or "failure"
- message: A text field describing the error, if any
Sample JSON Response: {curl -s http://360services.sorensonmedia.com/publishing_destinations/<publishing_destination_id> -X put -u <account_id>:<token> -d 'service=<service>' -d 'service_uri=<service_uri>' -d 'name=<name>' -d 'username=<username>' -d 'password=<password>'
"status": "success",
"message": ""
}