WireOfacDetails

Perform various operations on wire Office of Foreign Assets Control (OFAC) records.

Symitar eDocs References: Coming soon.

Operations

getWireOfacDetailsSelectFields

post

Retrieve Office of Foreign Assets Control (OFAC) details with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
WireOfacDetailsLocatorintegerOptional
Responses
200

Successful operation.

application/json
post
/getWireOfacDetailsSelectFields
POST /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"
      }
    ]
  }
}

getWireOfacDetailsPagedListSelectFields

post

Retrieve paged Office of Foreign Assets Control (OFAC) details with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

application/json
post
/getWireOfacDetailsPagedListSelectFields
POST /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"
}

searchWireOfacDetailsPagedSelectFields

post

Searches for wire OFAC details paged with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

application/json
post
/searchWireOfacDetailsPagedSelectFields
POST /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"
}

updateWireOfacDetailsByID

post

Updates OFAC details for a wire by ID

Authorizations
Body
WireSequenceNumberintegerOptional
WireOfacDetailsLocatorintegerOptional
Responses
200

Successful operation.

application/json
post
/updateWireOfacDetailsByID
POST /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?