Submit Credit Application

Endpoint

POST
http://serverRoot/tmf-api/openid/v4/credit-application-api/v1/submit

This operation submits credit application for an Individual

arrowRequest

Data containing the User Identity information

Header Parameters

    Query Parameters

      Body Parameters

      Responses

      Success

      arrowBody

      application/json

      REQUEST

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27
      28
      29
      30
      31
      32
      33
      34
      35
      36
      37
      38
      39
      40
      curl --request POST \
           --url 'http://serverroot/tmf-api/openid/v4/credit-application-api/v1/submit?fields=string' \
           --header 'Authorization: string' \
           --header 'accept: application/json;charset=utf-8' \
           --header 'content-type: application/json;charset=utf-8' \
           --data '
      {
        "userInfo": {
          "birthdate": "1970-11-02",
          "family_name": "Doe",
          "given_name": "Steven",
          "address": {
            "id": "ADDRESS-ID-100001",
            "postcode": "98021",
            "stateOrProvince": "WA",
            "addressCharacteristic": [
              {
                "name": "addressLine1",
                "value": "9927 BRENTLINGER LANE"
              }
            ]
          },
          "legalId": [
            {
              "identificationId": "666602764",
              "identificationType": "SocialSecurityNumber"
            }
          ]
        },
        "channel": {
          "id": "SelfService",
          "name": "SelfService",
          "role": "Customer"
        },
        "relatedParty": {
          "id": "INDIVIDUAL-ID-00001",
          "@referredType": "Individual"
        }
      }
      '

      RESPONSE

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      {
        "id": "110137566582",
        "href": "string",
        "status": "success",
        "characteristic": [
          {
            "name": "UnifiedCreditTransactionId",
            "value": "U20211013304398588"
          }
        ]
      }