PATCH api/v1/application/{applicationID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicationID

string

Required

Body Parameters

ApplicationUpdateRequest
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

ApplicationURL

string

None.

IsEnabled

boolean

None.

SupportUrl

string

None.

SupportPhone

string

None.

SupportEmail

string

None.

ImplicitFlowAllowed

boolean

None.

Keys

Collection of OauthKeyRequest

None.

ReplyUrls

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Description": "sample string 2",
  "ApplicationURL": "sample string 3",
  "IsEnabled": true,
  "SupportUrl": "sample string 4",
  "SupportPhone": "sample string 5",
  "SupportEmail": "sample string 6",
  "ImplicitFlowAllowed": true,
  "Keys": [
    {
      "ID": "a7d24cdc-f2df-489f-8422-6eb4ba3ee68e",
      "StartDate": "2025-04-04T00:46:08.175886+00:00",
      "EndDate": "2025-04-04T00:46:08.175886+00:00"
    },
    {
      "ID": "a7d24cdc-f2df-489f-8422-6eb4ba3ee68e",
      "StartDate": "2025-04-04T00:46:08.175886+00:00",
      "EndDate": "2025-04-04T00:46:08.175886+00:00"
    }
  ],
  "ReplyUrls": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<ApplicationUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PFL.PFLLink.BO.GenericAPI.Request">
  <ApplicationURL>sample string 3</ApplicationURL>
  <Description>sample string 2</Description>
  <ImplicitFlowAllowed>true</ImplicitFlowAllowed>
  <IsEnabled>true</IsEnabled>
  <Keys>
    <OauthKeyRequest>
      <EndDate>2025-04-04T00:46:08.175886+00:00</EndDate>
      <ID>a7d24cdc-f2df-489f-8422-6eb4ba3ee68e</ID>
      <StartDate>2025-04-04T00:46:08.175886+00:00</StartDate>
    </OauthKeyRequest>
    <OauthKeyRequest>
      <EndDate>2025-04-04T00:46:08.175886+00:00</EndDate>
      <ID>a7d24cdc-f2df-489f-8422-6eb4ba3ee68e</ID>
      <StartDate>2025-04-04T00:46:08.175886+00:00</StartDate>
    </OauthKeyRequest>
  </Keys>
  <Name>sample string 1</Name>
  <ReplyUrls xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ReplyUrls>
  <SupportEmail>sample string 6</SupportEmail>
  <SupportPhone>sample string 5</SupportPhone>
  <SupportUrl>sample string 4</SupportUrl>
</ApplicationUpdateRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ApplicationUpdateRequest'.

multipart/form-data

Sample:

An exception has occurred while using the formatter 'MultiPartMediaFormat' to generate sample for media type 'multipart/form-data'. Exception message: The media type formatter of type 'MultiPartMediaFormat' does not support writing because it does not implement the WriteToStreamAsync method.

image/png

Sample:

An exception has occurred while using the formatter 'ImageMediaFormat' to generate sample for media type 'image/png'. Exception message: The media type formatter of type 'ImageMediaFormat' does not support writing because it does not implement the WriteToStreamAsync method.

image/jpg

Sample:

An exception has occurred while using the formatter 'ImageMediaFormat' to generate sample for media type 'image/jpg'. Exception message: The media type formatter of type 'ImageMediaFormat' does not support writing because it does not implement the WriteToStreamAsync method.

image/jpeg

Sample:

An exception has occurred while using the formatter 'ImageMediaFormat' to generate sample for media type 'image/jpeg'. Exception message: The media type formatter of type 'ImageMediaFormat' does not support writing because it does not implement the WriteToStreamAsync method.

image/bmp

Sample:

An exception has occurred while using the formatter 'ImageMediaFormat' to generate sample for media type 'image/bmp'. Exception message: The media type formatter of type 'ImageMediaFormat' does not support writing because it does not implement the WriteToStreamAsync method.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, multipart/form-data, image/png, image/jpg, image/jpeg, image/bmp

Sample:

Sample not available.