v50

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2026-05-273145122.2 KB
Mortgage Financing Request

Get the details of a financing request

Get a specific financing request based on the financingRequestId.

get/mortgages/applications/{applicationId}/financing-requests/{financingRequestId}

Path parameters

applicationIdstring uuid required

The application identifier (UUID v4) defined by FI.

Example:4bf92636-14a0-4511-98e2-acfde576e644

Uuid v4 of the application request.

financingRequestIdstring uuid required

Uuid v4 of the financing request defined by FI.

Example:4bf92636-14a0-4511-98e2-acfde576e644

Uuid v4 of the financing request.

Query parameters

cursorstring
Example:cursorIDxyz

Optional parameter for pagination. An opaque string value used for pagination.

limitinteger
Example:25

Optional parameter for pagination. Maximum number of entries to be returned.

Headers

X-CorAPI-Client-IDstring required

ID of the client forwarded to the provider.

X-Correlation-IDstring required

Unique ID (defined by the caller) which will be reflected back in the response.

User-Agentstring required

Name and version of the of the Client software.

Response

OK.

Example response

{
  "offerList": [
    {
      "amount": {
        "content": "235.45",
        "currency": "CHF"
      },
      "applicationId": "4bf92636-14a0-4511-98e2-acfde576e644",
      "financingRequestId": "4bf92636-14a0-4511-98e2-acfde576e644",
      "increaseAmount": {
        "content": "235.45",
        "currency": "CHF"
      },
      "increasePurpose": "renovation of the kitchen",
      "publicCertDate": "2018-04-13",
      "requestOfferType": "binding",
      "tranches": [
        {
          "trancheId": "51b017e1-5e59-4b58-a0a0-c638c87db463",
          "productId": "4bf92636-14a0-4511-98e2-acfde576e644",
          "productVariation": {
            "duration": 5,
            "rate": 0.5,
            "saronperiod": "3m"
          },
          "payOutDate": "2018-04-13",
          "amount": {
            "content": "235.45",
            "currency": "CHF"
          }
        }
      ],
      "usedAssets": [
        {
          "amount": {
            "content": "235.45",
            "currency": "CHF"
          },
          "applicantId": "576f8de3-6b30-4882-a7af-da2132a456cf",
          "assetType": "cash",
          "assetProvider": {
            "name": "Credit Suisse"
          },
          "insuranceSum": {
            "content": "235.45",
            "currency": "CHF"
          },
          "usageType": "pledged"
        }
      ]
    }
  ]
}