Comment

Perform various operations on comment records.

Symitar eDocs References: Coming soon.

Operations

getComment

post
Authorizations
Body
AccountNumberstringOptional
CommentLocatorintegerOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "CommentLocator": 1,
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "Comment": {
    "EffectiveDate": "2025-11-06",
    "ExpirationDate": "2025-11-06",
    "Locator": 1,
    "RecordChangeDate": "2025-11-06",
    "Text": "text",
    "Type": 1
  }
}

getCommentSelectFields

post
Authorizations
Body
AccountNumberstringOptional
CommentLocatorintegerOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "CommentLocator": 1,
  "SelectableFields": {
    "IncludeAllCommentFields": true,
    "CommentFields": {
      "EffectiveDate": true,
      "ExpirationDate": true,
      "Locator": true,
      "RecordChangeDate": true,
      "Text": true,
      "Type": true
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "Comment": {
    "EffectiveDate": "2025-11-06",
    "ExpirationDate": "2025-11-06",
    "Locator": 1,
    "RecordChangeDate": "2025-11-06",
    "Text": "text",
    "Type": 1
  }
}

getCommentPagedList

post
Authorizations
Body
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "PagingRequestContext": {
    "NumberOfRecordsToReturn": 1,
    "NumberOfRecordsToSkip": 1,
    "Token": "text"
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "Comment": [
    {
      "EffectiveDate": "2025-11-06",
      "ExpirationDate": "2025-11-06",
      "Locator": 1,
      "RecordChangeDate": "2025-11-06",
      "Text": "text",
      "Type": 1
    }
  ],
  "Token": "text"
}

getCommentListSelectFields

post
Authorizations
Body
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "SelectableFields": {
    "IncludeAllCommentFields": true,
    "CommentFields": {
      "EffectiveDate": true,
      "ExpirationDate": true,
      "Locator": true,
      "RecordChangeDate": true,
      "Text": true,
      "Type": true
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "CommentList": {
    "hasReachedMaximumListSize": true,
    "Comment": [
      {
        "EffectiveDate": "2025-11-06",
        "ExpirationDate": "2025-11-06",
        "Locator": 1,
        "RecordChangeDate": "2025-11-06",
        "Text": "text",
        "Type": 1
      }
    ]
  }
}

searchCommentSelectFields

post
Authorizations
Body
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "SelectableFields": {
    "IncludeAllCommentFields": true,
    "CommentFields": {
      "EffectiveDate": true,
      "ExpirationDate": true,
      "Locator": true,
      "RecordChangeDate": true,
      "Text": true,
      "Type": true
    }
  },
  "SearchFilter": {
    "Query": "text"
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "CommentList": {
    "hasReachedMaximumListSize": true,
    "Comment": [
      {
        "EffectiveDate": "2025-11-06",
        "ExpirationDate": "2025-11-06",
        "Locator": 1,
        "RecordChangeDate": "2025-11-06",
        "Text": "text",
        "Type": 1
      }
    ]
  }
}

getCommentPagedListSelectFields

post
Authorizations
Body
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "PagingRequestContext": {
    "NumberOfRecordsToReturn": 1,
    "NumberOfRecordsToSkip": 1,
    "Token": "text"
  },
  "SelectableFields": {
    "IncludeAllCommentFields": true,
    "CommentFields": {
      "EffectiveDate": true,
      "ExpirationDate": true,
      "Locator": true,
      "RecordChangeDate": true,
      "Text": true,
      "Type": true
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "Comment": [
    {
      "EffectiveDate": "2025-11-06",
      "ExpirationDate": "2025-11-06",
      "Locator": 1,
      "RecordChangeDate": "2025-11-06",
      "Text": "text",
      "Type": 1
    }
  ],
  "Token": "text"
}

searchCommentPagedSelectFields

post
Authorizations
Body
AccountNumberstringOptional
QuerystringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "PagingRequestContext": {
    "NumberOfRecordsToReturn": 1,
    "NumberOfRecordsToSkip": 1,
    "Token": "text"
  },
  "SelectableFields": {
    "IncludeAllCommentFields": true,
    "CommentFields": {
      "EffectiveDate": true,
      "ExpirationDate": true,
      "Locator": true,
      "RecordChangeDate": true,
      "Text": true,
      "Type": true
    }
  },
  "Query": "text",
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "Comment": [
    {
      "EffectiveDate": "2025-11-06",
      "ExpirationDate": "2025-11-06",
      "Locator": 1,
      "RecordChangeDate": "2025-11-06",
      "Text": "text",
      "Type": 1
    }
  ],
  "Token": "text"
}

updateCommentByID

post
Authorizations
Body
CommentLocatorintegerOptional
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "CommentLocator": 1,
  "CommentUpdatableFields": {
    "EffectiveDate": "2025-11-06",
    "ExpirationDate": "2025-11-06",
    "Text": "text",
    "Type": 1
  },
  "AccountNumber": "text",
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

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

createComment

post
Authorizations
Body
AccountNumberstringOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "CommentCreatableFields": {
    "EffectiveDate": "2025-11-06",
    "ExpirationDate": "2025-11-06",
    "Text": "text",
    "Type": 1
  },
  "AccountNumber": "text",
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "CommentLocator": 1
}

deleteComment

post
Authorizations
Body
AccountNumberstringOptional
CommentLocatorintegerOptional
Responses
200

Successful operation.

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

{
  "Credentials": {
    "UserNumberCredentials": {
      "UserNumber": 1995,
      "Password": "2dfKQYR!TeXJwe"
    }
  },
  "AccountNumber": "text",
  "CommentLocator": 1,
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "nxAttributes": {}
}

Last updated

Was this helpful?