How can we help?

Searching:

0 results found

Applications/Patch or Applications/Put

PATCH /odata/Applications/Patch/[applicationId]

– OR –

PUT /odata/Applications/Put/[applicationId]

Description

To update an existing Axonize Application.

See the following for request and response details:

See Also

Request ‒ Applications/Patch or Put

In the request, specify the ID of the Application whose definition to change and the name of the property(s) to change. These properties are described in Applications/Post.

For the Patch endpoint, all unspecified fields remain unchanged.

For the Put endpoint, all unspecified fields are assigned default values.

Property Type Description Mandatory
appId String A unique Application identifier (appId) that is automatically generated by Axonize when the Applications/Post endpoint is used. Y
name String The name of this Application – free text. Y (Only for Put)

Example JSON Applications/Patch Request

The following is an example of changing the Application’s name to test.

curl -X PATCH \

https://api.stg.axonize.com/odata/applications/585166654e41925b98f01234\

-H ‘Authorization: Token’ \

-H ‘Content-Type: application/json’ \

-H ‘appId: 801A048A-9F23-429F-BF0D-B6D35B22771E’ \

-d ‘{

name“:”test”

}

Response ‒ Applications/Patch or Put

Property Type Description
createDate, createUser, updateDate, updateUser See Common Response Properties.

Example JSON Applications/Patch/Put Response

Status 204 – No Content. The server has successfully fulfilled the request.