Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AppKey String Route Unique key for each application
  • Response Parameters

    View Response Codes
    Name Type Description
    AppKey String Unique app key - exposed to end users
    Branding BrandingDto [] Branding info
    CreatedBy UserDto Created by user hash key and name
    Description String Description
    Endpoints EndpointDto Endpoints
    Flow String SSO Authentication flow
    IsActive Boolean Is app active
    IsTradingEnabled Boolean Derived field from 'OnlineAuthzLevels' and 'OfflineAuthzLevels'
    Name String The name of the app
    RedirectUris AppRedirectDto [] Redirect uris
    Secrets AppSecretDto [] Secrets
    Status AppStatus App status, OK or Pending
  • Request Example

    Request URL
    GET /developer/apps/76caa3a4-5eb5-45d3-88cf-bb74847a1d0e
  • Response Example

    Response body
    {
      "AppKey": "stringValue",
      "Branding": [
        {
          "Description": "stringValue",
          "Id": 99,
          "Name": "stringValue"
        }
      ],
      "CreatedBy": {
        "Name": "stringValue",
        "UserKey": "stringValue"
      },
      "Description": "stringValue",
      "Endpoints": {
        "AuthorizationEndpoint": "stringValue",
        "TokenEndpoint": "stringValue"
      },
      "Flow": "stringValue",
      "IsActive": true,
      "IsTradingEnabled": false,
      "Name": "stringValue",
      "RedirectUris": [
        {
          "Branding": {
            "Description": "stringValue",
            "Id": 99,
            "Name": "stringValue"
          },
          "Description": "stringValue",
          "RedirectUriId": 99,
          "RedirectUriLabel": "stringValue",
          "Uri": "stringValue"
        }
      ],
      "Secrets": [
        {
          "Secret": "stringValue",
          "SecretId": 99,
          "ValidFrom": "0001-01-01T00:00:00Z",
          "ValidUntil": "0001-01-01T00:00:00Z"
        }
      ],
      "Status": "PendingUserApprovalCheck"
    }