AcsGlobal

Perform various operations for Symitar parameters.

Symitar eDocs References: Coming soon.

Operations

getAcsGlobal

post

Retrieve the global access control system

Authorizations
Body
Responses
200

Successful operation.

application/json
post
/getAcsGlobal
POST /nexum/627/2022.01/parameter/getAcsGlobal 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.

{
  "AcsGlobal": {
    "AcsAccountManagerEnable": true,
    "AcsTellerTranEnable": true,
    "CreditReportExpireDays": 1,
    "SecuredLoanTypeList": "text",
    "UnsecuredLoanTypeList": "text"
  }
}

getAcsGlobalSelectFields

post

Retrieve the global access control system with selected fields

Authorizations
Body
Responses
200

Successful operation.

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

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "SelectableFields": {
    "IncludeAllAcsGlobalFields": true,
    "AcsGlobalFields": {
      "AcsAccountManagerEnable": true,
      "AcsTellerTranEnable": true,
      "CreditReportExpireDays": true,
      "SecuredLoanTypeList": true,
      "UnsecuredLoanTypeList": true
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "AcsGlobal": {
    "AcsAccountManagerEnable": true,
    "AcsTellerTranEnable": true,
    "CreditReportExpireDays": 1,
    "SecuredLoanTypeList": "text",
    "UnsecuredLoanTypeList": "text"
  }
}

updateAcsGlobalByID

post

Update ACS Global by ID

Authorizations
Body
Responses
200

Successful operation.

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

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "AcsGlobalUpdatableFields": {
    "AcsAccountManagerEnable": true,
    "AcsTellerTranEnable": true,
    "CreditReportExpireDays": 1,
    "SecuredLoanTypeList": "text",
    "UnsecuredLoanTypeList": "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?