This is an archive version of the document. To get the most up-to-date information, see the current version.

PUT Method

In this article

    The PUT HTTP method is used to update the properties of the resource, for example, edit job settings.

    The PUT HTTP method requires a request body. In the body of the request, the client must send an updated representation of the resource. The body may contain the whole resource representation or only those settings that the client wants to edit. The body of the request must conform to the XML Schema of Veeam Backup Enterprise Manager RESTful API.

    If case of success, the PUT HTTP method returns the HTTP response code 200 Success or 202 Accepted.

    • Code 200 Success is returned if the operation can be performed immediately.
    • Code 202 Accepted is returned if the operation takes much time to perform. In this case, the operation is performed in the asynchronous manner. The server creates a task for method completion and returns a link to this task to the client. Using this link, the client can monitor the task completion.

    In the example below, the PUT HTTP request is sent to update the job description:

    Request:

    PUT http://localhost:9399/api/jobs/115f560f-3a5f-4a88-b0c8-096c845bafcd

     

    Request Body:

    <?xml version="1.0" encoding="utf-8"?>
    <Job Href="http://localhost:9399/api/jobs/115f560f-3a5f-4a88-b0c8-096c845bafcd?format=Entity" Type="Job" Name="vcloud" UID="urn:veeam:Job:115f560f-3a5f-4a88-b0c8-096c845bafcd" xmlns="http://www.veeam.com/ent/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Description>Changing job description</Description>
    </Job>

     

    Response:

    202 Accepted

     

    Response Body:

    <Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="http://localhost:9399/api/tasks/task-12">
    <Links>
       <Link Rel="Delete" Type="Task" Href="http://localhost:9399/api/tasks/task-12" />
     </Links>
     <TaskId>task-12</TaskId>
     <State>Running</State>
     <Operation>EditJob</Operation>
    </Task>

    To monitor the state of the task completion, the client sends the GET HTTP request to the URL of the task resource:

    Request:

    GET http://localhost:9399/api/tasks/task-12

     

    Response:

    20O Success

     

    Response Body:

    <Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="http://localhost:9399/api/tasks/task-12">
    <Links>
       <Link Rel="Delete" Type="Task" Href="http://localhost:9399/api/tasks/task-12" />
     </Links>
     <TaskId>task-12</TaskId>
     <State>Finished</State>
     <Operation>EditJob</Operation>
     <Result Success="true">
       <Message>Ok</Message>
     </Result>
    </Task>