MoProduct

Perform various operations for Symitar parameters.

Symitar eDocs References: Coming soon.

Operations

getMoProduct

post

Retrieve MO product information

Authorizations
Body
Responses
200

Successful operation.

application/json
post
/getMoProduct
POST /nexum/627/2022.01/parameter/getMoProduct HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 124

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "MoProduct": {
    "CreateCheckRecord": true,
    "NumberofProducts": 1,
    "ProductDescription": [
      {
        "EntryId": 1,
        "ProductDescription": "text"
      }
    ]
  }
}

getMoProductSelectFields

post

Retrieve MO product select fields

Authorizations
Body
Responses
200

Successful operation.

application/json
post
/getMoProductSelectFields
POST /nexum/627/2022.01/parameter/getMoProductSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 272

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "SelectableFields": {
    "IncludeAllMoProductFields": true,
    "MoProductFields": {
      "CreateCheckRecord": true,
      "NumberofProducts": true,
      "ProductDescription": [
        1
      ]
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "MoProduct": {
    "CreateCheckRecord": true,
    "NumberofProducts": 1,
    "ProductDescription": [
      {
        "EntryId": 1,
        "ProductDescription": "text"
      }
    ]
  }
}

updateMoProductByID

post

Update mortgage products by ID

Authorizations
Body
Responses
200

Successful operation.

application/json
post
/updateMoProductByID
POST /nexum/627/2022.01/parameter/updateMoProductByID HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 264

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "MoProductUpdatableFields": {
    "CreateCheckRecord": true,
    "NumberofProducts": 1,
    "ProductDescription": [
      {
        "EntryId": 1,
        "ProductDescription": "text"
      }
    ]
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "UpdateStatus": {
    "isAllFieldsUpdateSuccess": true,
    "FailedUpdateStatus": [
      {
        "Record": "text",
        "ErrorCode": "text",
        "ErrorMessage": "text",
        "PrimaryKeyField": [
          {
            "Name": "text",
            "Value": "text"
          }
        ]
      }
    ]
  }
}

Last updated

Was this helpful?