EpisysDbExtract

Perform various operations for Symitar parameters.

Symitar eDocs References: Coming soon.

Operations

getEpisysDbExtract

post

Retrieve Episys database extract data.

Authorizations
Body
Responses
200

Successful operation.

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

{
  "EpisysDbExtract": {
    "ExtractDate": [
      {
        "EntryId": 1,
        "ExtractDate": "2025-11-07"
      }
    ]
  }
}

getEpisysDbExtractSelectFields

post

Retrieve select fields for Episys database extract data.

Authorizations
Body
Responses
200

Successful operation.

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

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "SelectableFields": {
    "IncludeAllEpisysDbExtractFields": true,
    "EpisysDbExtractFields": {
      "ExtractDate": [
        1
      ]
    }
  },
  "nxAttributes": {
    "customFields": {
      "appId": "glaci"
    }
  }
}
200

Successful operation.

{
  "EpisysDbExtract": {
    "ExtractDate": [
      {
        "EntryId": 1,
        "ExtractDate": "2025-11-07"
      }
    ]
  }
}

updateEpisysDbExtractByID

post
Authorizations
Body
Responses
200

Successful operation.

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

{
  "Credentials": {
    "AdministrativeCredentials": {
      "Password": "suwn37834b91&"
    }
  },
  "EpisysDbExtractUpdatableFields": {
    "ExtractDate": [
      {
        "EntryId": 1,
        "ExtractDate": "2025-11-07"
      }
    ]
  },
  "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?