Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AppKey String Route Unique key for each application
    BrandingId Integer Body Branding id
    Description String Body Description is mapped to Label field
    RedirectUriId Integer Route Unique key for each redirect uri
    Uri String Body Redirect uri
  • Response Parameters

    View Response Codes
    Name Type Description
    Branding BrandingDto Service Provider
    Description String Description of OAuth app
    RedirectUriId Integer Redirect Uri Id
    RedirectUriLabel String Redirect Uri Label
    Uri String Redirect Uri of OAuth app
  • Request Example

    Request URL
    PATCH /developer/apps/50fb26e9b4bc4e7ba78dc19f46bc84bf/redirecturis/1
    Request Body
    {
      "Description": "some description",
      "Uri": "http://mycompany.com/myapp"
    }
    
  • Response Example

    Response body
    {
      "Branding": {
        "Description": "stringValue",
        "Id": 99,
        "Name": "stringValue"
      },
      "Description": "stringValue",
      "RedirectUriId": 99,
      "RedirectUriLabel": "stringValue",
      "Uri": "stringValue"
    }