WireOfacDetails
Perform various operations on wire Office of Foreign Assets Control (OFAC) records.
Operations
Retrieve Office of Foreign Assets Control (OFAC) details with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
WireOfacDetailsLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireOfacDetailsSelectFieldsPOST /nexum/627/persistent/wire/getWireOfacDetailsSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 286
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireOfacDetailsLocator": 1,
"SelectableFields": {
"IncludeAllWireOfacDetailsFields": true,
"WireOfacDetailsFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireOfacDetails": {
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
}Retrieve paged Office of Foreign Assets Control (OFAC) details with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireOfacDetailsPagedListSelectFieldsPOST /nexum/627/persistent/wire/getWireOfacDetailsPagedListSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 353
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireOfacDetailsFields": true,
"WireOfacDetailsFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireOfacDetails": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Searches for wire OFAC details paged with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/searchWireOfacDetailsPagedSelectFieldsPOST /nexum/627/persistent/wire/searchWireOfacDetailsPagedSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 385
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireOfacDetailsFields": true,
"WireOfacDetailsFields": {
"Locator": true,
"Text": [
1
]
}
},
"SearchFilter": {
"Query": "text"
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireOfacDetails": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Updates OFAC details for a wire by ID
Authorizations
Body
WireSequenceNumberintegerOptional
WireOfacDetailsLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/updateWireOfacDetailsByIDPOST /nexum/627/persistent/wire/updateWireOfacDetailsByID HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 249
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireOfacDetailsLocator": 1,
"WireOfacDetailsFields": {
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "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?