Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AppKey String Route Unique key for each application
    BrandingId Integer Body App branding id
    Description String Body App description
    Uri String Body App redirect uri
  • Response Parameters

    View Response Codes
    Name Type Description
    Data AppRedirectDto The app data
    FoundAndUpdated Boolean Was the redirect uri found and was some properties updated
  • Request Example

    Request URL
    POST /developer/apps/f0232f57-9d4a-40a7-adeb-82d347536d35/redirecturis
    Request Body
    {
      "Description": "New App Description",
      "Uri": "http://my.com/myapp"
    }
    
  • Response Example

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