Upgrading from IBM Control Desk 7.6.1.5 to Maximo IT
In today’s fast-paced world of data analytics and AI, optimizing your data infrastructure is key to unlocking valuable insights and driving innovation.
A brief description of the order type, definition of the parameters defined for the order type, and the sample XML schema are provided for the following order types.
FUL is a standard order type for submitting the files to the bank. Using this order type ensures a transparent transfer of files of any format.
Access
Mailbox
Description
A user initiates a upload transaction with the bank by submitting a upload (FUL) order request. FUL order type is a bank-technical download order type.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID according to EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, FUL is the order type. |
FileFormat | The file format associated with the order type. An order type can have zero or more file formats. The file formats for FUL and FDL order types are based on the SWIFTNet request type. |
autoSubmit | This parameter is applicable only for FUL order type. If this parameter is set to true, then an order is automatically submitted after the required number of signatures are obtained. If this parameter is set to false, then an EBICS Client user has to log in to the EBICS Client dashboard interface, navigate to the pending tasks screen, and submit the order after the required number of signatures are obtained. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>SUBNKPK12</HostID>
<HostUrlAlias>SUBNKPK12_URL_ALIAS</HostUrlAlias>
<PartnerID>SUPKID</PartnerID>
<UserID>SUUSER1</UserID>
<SystemID>TECHUSER</SystemID>
<orderIdPrefix>L</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>FUL</OrderType>
<FileFormat>pain.xxx.cfonb160.dtg</FileFormat>
<autoSubmit>true</autoSubmit>
</orderMetaData>
Parameter List
The EBICS - Implementation Guide in France recommends that a test of the file transfer is necessary before transferring the actual files to the bank. Therefore, the customer workstation must have a set-up that allows transfer of files in a test as well as a production environment. To distinguish the test files from the production files, the parameter name TEST is included in the OrderParams tag for FUL and FDL order types. The OrderParams tag can be set in the orderMetaData XML. Similarly, the bank and the EBICS client can share a list of parameters and corresponding values based on a mutual understanding of the parameters defined in the contractual agreement.
The following example illustrates a scenario wherein test files are transferred and therefore the value of TEST is set to TRUE:
<OrderParams>
<ParameterList>
<Parameter>
<Name>TEST</Name>
<Value>TRUE</Value>
</Parameter>
<Parameter>
<Name>param2</Name>
<Value>value2</Value>
</Parameter>
<Parameter>
<Name>param3</Name>
<Value>value3</Value>
</Parameter>
</ParameterList>
</OrderParams>
Â
FDL is a standard order type for file downloads. Using this order type ensures a transparent transfer of files of any format.
Access
MailboxDescription
FDL order type is a bank-technical download order type. A user initiates a download transaction with the bank by submitting a download (FDL) order request.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, FDL is the order type. |
FileFormat | The file format associated with the order type. An order type can have zero or more file formats. The file formats for FUL and FDL order types are based on the SWIFTNet request type. |
DownloadDateRangeStart | The start date of the download of order data. This parameter is applicable only for FDL order type. |
DownloadDateRangeEnd | The end date of the download of order data. This parameter is applicable only for FDL order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>USERPK12</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>U</orderIdPrefix>
<SecurityMedium>0000</SecurityMedium>
<OrderType>FDL</OrderType>
<FileFormat>pain.002.001.02.ack</FileFormat>
<DownloadDateRangeStart></DownloadDateRangeStart>
<DownloadDateRangeEnd></DownloadDateRangeEnd>
</orderMetaData>
Parameter List
The EBICS - Implementation Guide in France recommends that a test of the file transfer is necessary before transferring the actual files to the bank. Therefore, the customer workstation must have a set-up that allows transfer of files in a test as well as a production environment. To distinguish the test files from the production files, the parameter name TEST is included in the OrderParams tag for FUL and FDL order types. The OrderParams tag can be set in the orderMetaData XML. Similarly, the bank and the EBICS client can share a list of parameters and corresponding values based on a mutual understanding of the parameters defined in the contractual agreement.
EBICS Client user shares the public keys for Electronic Signature with the bank through the INI (Initialization) order type.
Access
Mailbox
Description
INI is an upload key management order type. INI is used in subscriber initialization. Use INI to send the bank-technical public certificate of a customer to the bank. The order data is compressed and base64-encoded.
Self-signed certificates cannot be used for electronic signatures and consequently for user initialization (INI order type). An EBICS Client user using self-signed certificates for identification and authentication and encryption, has to use CA certificates for electronic signatures.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The INI order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the systemID. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0100 to 0499 range. The value cannot be changed for INI, HIA, and HPB order types. |
OrderType | The order type of the order you are submitting. In this case, INI is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>SUBNKPK12</HostID>
<HostUrlAlias>SUBNKPK12_URL_ALIAS</HostUrlAlias>
<PartnerID>SUPKID</PartnerID>
<UserID>TECHUSER</UserID>
<SystemID>TECHUSER</SystemID>
<orderIdPrefix>S</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>INI</OrderType>
</orderMetaData>
EBICS Client user shares the public keys for identification and authentication and encryption with the bank through the HIA order type.
Access
Mailbox
Description
HIA is an upload key management order type. HIA is used to transmit user public certificates for identification and authentication, and encryption to enable the user to initiate transactions with the bank. The order data is compressed and base64-encoded.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The HIA order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the systemID. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0100 to 0499 range. The value cannot be changed for INI, HIA, and HPB order types. |
OrderType | The order type of the order you are submitting. In this case, HIA is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>SUBNKPK12</HostID>
<HostUrlAlias>SUBNKPK12_URL_ALIAS</HostUrlAlias>
<PartnerID>SUPKID</PartnerID>
<UserID>TECHUSER</UserID>
<SystemID>TECHUSER</SystemID>
<orderIdPrefix>W</orderIdPrefix>
<SecurityMedium>0000</SecurityMedium>
<OrderType>HIA</OrderType>
</orderMetaData>
You can use the H3K order type to share the public certificates for Electronic Signature, identification and authentication, and encryption with the bank.
Access
Mailbox
Description
H3K is an upload key management order type. H3K is used to transmit user public certificates for Electronic Signature, identification and authentication, and encryption to enable the user to initiate transactions with the bank.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The H3K order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the SystemID. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, H3K is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:ns2="partnerInfo">
<HostID>SUBNKPK12</HostID>
<HostUrlAlias>SUBNKPK12_URL_ALIAS</HostUrlAlias>
<PartnerID>SUPKID</PartnerID>
<UserID>TECHUSER</UserID>
<SystemID>TECHUSER</SystemID>
<SecurityMedium>0200</SecurityMedium>
<OrderType>H3K</OrderType>
</orderMetaData>
Using the HPB order type, the EBICS Client user downloads the public certificates of the bank.
Access
Mailbox
Description
HPB is a download key management order type. The user submits an HPB order request to download the public certificates of the bank. After successful validation of the user's authentication and identification keys, the bank sends an HPB response. The HPB response contains the public bank keys. The user validates the bank keys against the internally generated hash values. After successful validation, the status of the bank changes to Activated, indicating that the partner and its associated users can now transact with the bank.
The order data is compressed, encrypted, and base64-encoded. The response message and the order data are not signed.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0100 to 0499 range. The value cannot be changed for INI, HIA, and HPB order types. The security medium for the subscriber’s bank-technical key is set to 0000 since HPB orders neither require electronic signatures nor transmit bank-technical subscriber keys. |
OrderType | The order type of the order you are submitting. In this case, HPB is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>UH2LCMC1</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>C</orderIdPrefix>
<SecurityMedium>0000</SecurityMedium>
<OrderType>HPB</OrderType>
</orderMetaData>
Using the HKD order type, the user can download customer data and subscriber data.
Access
Mailbox
Description
HKD is a download key management order type. Use the HKD order type to download information about a partner and associated subscribers stored by the bank, including information about your own company. The order data is compressed and base64-encoded.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, HKD is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData>
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>USERPK12</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>H</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>HKD</OrderType>
</orderMetaData>
Using the HTD order type, the user can download customer data and subscriber data.
Access
Mailbox
Description
HTD is a download key management order type. Using HTD, the subscriber can retrieve information stored by the bank relating to their company or themselves. However, unlike HKD, the subscriber cannot retrieve information about the company’s other subscribers. The order data is compressed and base64-encoded.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, HTD is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData>
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>USERPK12</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>Z</orderIdPrefix>
<SecurityMedium>0000</SecurityMedium>
<OrderType>HTD</OrderType>
</orderMetaData>
Using the HEV order type, the user can download the EBICS versions supported by the bank.
Access
Mailbox
Description
HEV is a download key management order type. By submitting an HEV request, the user requests the bank to provide a list of EBICS versions supported by the bank. The bank provides a response that contains a list of supported EBICS versions and the version of the relevant schema.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
OrderType | The order type of the order you are submitting. In this case, HEV is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>USERPK12</UserID>
<SystemID>UH2LCMC1</SystemID>
<OrderType>HEV</OrderType>
</orderMetaData>
Use PTK order type to download transaction status.
PTK order type is available under H003
 and H004
 protocol versions.
Use PUB order type to send public key for signature verification.
Access
Mailbox
Description
PUB is an upload key management order type used to update customer's certificate and send the bank-technical public certificate to the bank. The order data is signed, compressed, encrypted, and base64-encoded.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The PUB order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the systemID. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. The value cannot be changed for INI, HIA, and HPB order types. The security medium for the subscriber’s bank-technical key is set to 0000 since HPB orders neither require electronic signatures nor transmit bank-technical subscriber keys. |
OrderType | The order type of the order you are submitting. In this case, PUB is the order type. |
UserSignNewPubKeyAlias | The alias of the public key of the new Electronic Signature (ES) certificate to be updated for the user. |
UserSignNewPubKeyID | The ID of the new Electronic Signature (ES) public certificate to be updated for the user. |
UserSignNewPriKeyAlias | The alias of the private key of the new Electronic Signature (ES) certificate to be updated for the user. Set this parameter if you are not using a hardware key for Electronic Signature. The bank must have the public part of the key to validate the authorization. |
UserSignNewPriKeyID | The ID of the new Electronic Signature (ES) private certificate to be updated for the user. Set this parameter if you are not using a hardware key for Electronic Signature. |
UserNewSignatureVersion | The key version of the new electronic signature to be updated for the user. The valid values are A005 or A006. If you are using a hardware key store for electronic signature, then the key version is set to A005 and cannot be changed. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>UH2LCMC1</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>G</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>PUB</OrderType>
<UserSignNewPubKeyAlias>CAEBSignBSaiPub</UserSignNewPubKeyAlias>
<UserSignNewPubKeyID>blrgislin32:node1:12e961909b2:10417097</UserSignNewPubKeyID>
<UserSignNewPriKeyAlias>CAEBSignBSaiPriv</UserSignNewPriKeyAlias>
<UserSignNewPriKeyID>blrgislin32:node1:12e961909b2:10415111</UserSignNewPriKeyID>
<UserNewSignatureVersion>A005</UserNewSignatureVersion>
</orderMetaData>
Use HCS order type to amend of the subscriber keys for Electronic Signature, identification and authentication, and encryption.
Access
Mailbox
Description
HCS is an upload key management order type. HCS is introduced to allow modification of all the three keys in a single transaction. The three keys include bank-technical electronic signature (PUB), identification and authentication signature and encryption (HCA). Therefore, order type HCS comprises PUB and HCA. The order types PUB and HCA can be used as alternatives to HCS.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The HCS order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the systemID. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. The value cannot be changed for INI, HIA, and HPB order types. The security medium for the subscriber’s bank-technical key is set to 0000 since HPB orders neither require electronic signatures nor transmit bank-technical subscriber keys. |
OrderType | The order type of the order you are submitting. In this case, HCS is the order type. |
UserSignNewPubKeyAlias | The alias of the public key of the new Electronic Signature (ES) certificate to be updated for the user. |
UserSignNewPubKeyID | The ID of the new Electronic Signature (ES) public certificate to be updated for the user. |
UserSignNewPriKeyAlias | The alias of the private key of the new Electronic Signature (ES) certificate to be updated for the user. Set this parameter if you are not using a hardware key for Electronic Signature. The bank must have the public part of the key to validate the authorization. |
UserSignNewPriKeyID | The ID of the new Electronic Signature (ES) private certificate to be updated for the user. Set this parameter if you are not using a hardware key for Electronic Signature. |
UserAuthNewPubKeyAlias | The alias of the new authentication public certificate to be updated for the user. The public key provided by the user to the bank to validate the authorization of the user in the request from the EBICS Client. The trading partner or user shares the key with the bank. |
UserAuthNewPubKeyID | The ID of the new authentication public certificate to be updated for the user. |
UserAuthNewPriKeyAlias | The alias of the new authentication private certificate to be updated for the user. The private key used by EBICS Client to create a digital signature for the user in the request sent to the bank. The bank must have the public part of the key to validate the authorization. |
UserAuthNewPriKeyID | The ID of the new authentication private certificate to be updated for the user. |
UserEncrNewPubKeyAlias | The alias of the new encryption public certificate to be updated for the user. The public part of the system certificate that is selected as the encryption private certificate. The trading partner or user shares the key with the bank. |
UserEncrNewPubKeyID | The ID of the new encryption public certificate to be updated for the user. |
UserEncrNewPriKeyAlias | The alias of the new encryption private certificate to be updated for the user. The private key used by EBICS Client to decrypt the response received from the bank. |
UserEncrNewPriKeyID | The ID of the new encryption private certificate to be updated for the user. |
UserNewSignatureVersion | The key version of the new electronic signature to be updated for the user. The valid values are A005 or A006. If you are using a hardware key store for electronic signature, then the key version is set to A005 and cannot be changed. |
UserNewAuthVersion | The key version of the authentication certificate is X002. |
UserNewEncVersion | The key version of the encryption certificate is E002. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>UH2LCMC1</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>J</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>HCS</OrderType>
<UserSignNewPubKeyAlias>CAEBSignASaiPub</UserSignNewPubKeyAlias>
<UserSignNewPubKeyID>blrgislin32:node1:12e961909b2:10416964</UserSignNewPubKeyID>
<UserSignNewPriKeyAlias>CAEBSignASaiPriv</UserSignNewPriKeyAlias>
<UserSignNewPriKeyID>blrgislin32:node1:12e961909b2:10414702</UserSignNewPriKeyID>
<UserAuthNewPubKeyAlias>CAEBAuthSaiPub</UserAuthNewPubKeyAlias>
<UserAuthNewPubKeyID>blrgislin32:node1:12e961909b2:10416444</UserAuthNewPubKeyID>
<UserAuthNewPriKeyAlias>CAEBAuthSaiPriv</UserAuthNewPriKeyAlias>
<UserAuthNewPriKeyID>blrgislin32:node1:12e961909b2:10413399</UserAuthNewPriKeyID>
<UserEncrNewPubKeyAlias>CAEBEncrSaiPub</UserEncrNewPubKeyAlias>
<UserEncrNewPubKeyID>blrgislin32:node1:12e961909b2:10416577</UserEncrNewPubKeyID>
<UserEncrNewPriKeyAlias>CAEBEncrSaiPriv</UserEncrNewPriKeyAlias>
<UserEncrNewPriKeyID>blrgislin32:node1:12e961909b2:10414316</UserEncrNewPriKeyID>
<UserNewSignatureVersion>A005</UserNewSignatureVersion>
<UserNewAuthVersion>X002</UserNewAuthVersion>
<UserNewEncVersion>E002</UserNewEncVersion>
</orderMetaData>
Using the HPD order type, the user can download bank parameters.
Access
Mailbox
Description
HPD is a download key management order type. The subscriber can receive information pertaining to the bank’s specific access (for example, URL or IP address to the bank and designation of the bank) and protocol parameters (for example, support for EBICS protocol versions, recovery, prevalidation, X.509, and so on). The order data is signed, compressed, encrypted, and base64-encoded.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. A technical user is a delegate of the non-technical or human user. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, HPD is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>USERPK12</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>J</orderIdPrefix>
<SecurityMedium>0000</SecurityMedium>
<OrderType>HPD</OrderType>
</orderMetaData>
Use the SPR order type to suspend a user's access authorization.
Access
Mailbox
Description
SPR is an upload key management order type. A subscriber can be suspended from transacting further with the bank for several reasons. One of the primary reasons for suspending a user is if the subscriber keys are compromised. If there is any suspicion that the subscriber keys are compromised, the subscriber must immediately suspend their access authorization to all the bank systems that use the keys.
The SPR order type does not compromise any additional order data and therefore does not contain any order file. The electronic signature of the EBICS Client user who is to be suspended is sent to the bank. The order data is a blank character. The signature is compressed, encrypted, and base64 encoded similar to a standard upload transaction.
Once a subscriber is suspended from transacting with the bank, the subscriber has to submit a new set of INI and HIA order types to the bank. If a subscriber is suspended by the bank, initialization through INI and HIA is not possible. Only the bank can revoke the suspension.
Parameters
Parameter | Description and value |
---|---|
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
PartnerID | The partner ID associated with the user ID. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
SystemID | User ID of the technical user. The SPR order type can be submitted by a technical user who is a delegate of the non-techncial or human user. Hence, the value of the UserID is the same as the value of the systemID. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
OrderType | The order type of the order you are submitting. In this case, SPR is the order type. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<HostID>BNKLCMC1</HostID>
<HostUrlAlias>BNKLCMC1_URL_ALIAS</HostUrlAlias>
<PartnerID>PH2LCMC1</PartnerID>
<UserID>UH2LCMC1</UserID>
<SystemID>UH2LCMC1</SystemID>
<orderIdPrefix>K</orderIdPrefix>
<SecurityMedium>0200</SecurityMedium>
<OrderType>SPR</OrderType>
</orderMetaData>
Using the HVD order type, the user can retrieve the state of a VEU order.
Access
Mailbox
Description
HVD is a download order type for distributed signature. Use the HVD order type to retrieve the state of an order that is currently in VEU processing and for which the subscriber is authorized as a signatory. With HVD, the hash value of the order is retrieved.
Parameters
Parameter | Description and value |
---|---|
OrderType | The order type of the order you are submitting. In this case, HVD is the order type. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
VEUOrderSeqID | The sequence ID of the transaction for which you are retrieving the HVD details. EBICS Client assigns a sequence ID to a transaction. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData>
<OrderType>HVD</OrderType>
<SecurityMedium>0200</SecurityMedium>
<VEUOrderSeqID>39132G7e0939003jfj34535536657</VEUOrderSeqID>
<orderIdPrefix>V</orderIdPrefix>
</orderMetaData>
Using the HVE order type, the user can add a VEU signature.
Access
Mailbox
Description
HVE is an upload order type for distributed signature. Use the HVE order type to add a bank-technical signature for authorization to an order for VEU processing. The signature data is compressed, encrypted, and base64 encoded.
Parameters
Parameter | Description and value |
---|---|
PartnerID | The partner ID associated with the user ID. |
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
OrderType | The order type of the order you are submitting. In this case, HVE is the order type. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
Product | The product for the EBICS Client application. |
productLang | The language setting of the EBICS Client application that you are using. For example, specify EN if the language is set to English. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
OrigPartnerID | The Partner ID associated with the user who submitted the upload order type. |
OrigOrderID | The order ID of the order for which the signature is applied. |
OrigOrderType | The order type of the order for which the signature is applied. |
VeuMessageDigest | Specify the Message Digest to submit the hash value of the order data. You can request for the hash value by calling or mailing the bank. The bank sends the hash value of the order data through an alternate mode of communication, for example, email. |
PAYLOADMSGID | Specify a ID for the payload message to submit the complete payload from your mailbox. You can request for the payload by calling or mailing the bank. The bank sends the payload to your EBICS Client mailbox. |
VEUOrderSeqID | The sequence ID of the transaction for which you are applying the signature using HVE. EBICS Client assigns a sequence ID to a transaction. |
XML schema
Using the HVT order type, the user can retrieve detailed information about an order from VEU processing for which the user is authorized as a signatory.
Access
Mailbox
Description
HVT is a download order type for distributed signature. Use the HVT order type to retrieve transaction details about an order from VEU processing.
Parameters
Parameter | Description and value |
---|---|
OrderType | The order type of the order you are submitting. In this case, HVT is the order type. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
VEUOrderSeqID | The sequence ID of the transaction for which you are downloading transaction details using HVT. EBICS Client assigns a sequence ID to a transaction. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
completeOrderData | If the completeOrderData attribute is set to true, the user sends a request to receive the complete order file. If the completeOrderData attribute is set to false, the user sends a request to receive specific details, such as, account details, implementation deadline, amount, and other description. |
fetchLimit | Maximum number of order details to be transmitted if the completeOrderData attribute is set to false. The default value is 100. Valid value is any non-negative integer. Specify 0 to fetch unlimited number of details. While it is possible to retrieve more than 100 details at a time, it is not ideal. |
fetchOffset | The offset position in the original order file that marks the starting point of the transaction details to be transmitted. If the completeOrderData attribute is set to false, then the offset position applies to the sequential number of a particular order. The default value is 0. Valid value is any non-negative integer. To retrieve more than 100 records, set fetch offset as 0 to retrieve the first 100 records, then set fetch offset as 101 to retrieve the next 100 records. Continue as needed. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData>
<OrderType>HVT</OrderType>
<SecurityMedium>0200</SecurityMedium>
<VEUOrderSeqID>39132G7e0939003jfj34535536657</VEUOrderSeqID>
<orderIdPrefix>V</orderIdPrefix>
<completeOrderData>false</completeOrderData>
<fetchLimit>5</fetchLimit>
<fetchOffset>2</fetchOffset>
</orderMetaData>
Using the HVU order type, the user can list the orders for which the user is authorized as a signatory.
Access
Mailbox
Description
HVU is a download order type for distributed signature. Use the HVU order type to download VEU overview. In the HVU request, the subscriber optionally submits a list of order types for which the subscriber is authorized as a signatory.
Parameters
Parameter | Description and value |
---|---|
PartnerID | The partner ID associated with the user ID. |
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
OrderType | The order type of the order you are submitting. In this case, HVU is the order type. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
Product | The product for the EBICS Client application. |
productLang | The language setting of the EBICS Client application that you are using. For example, specify EN if the language is set to English. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
VEUOrderTypes | The order types in the form of an XML list for which HVU data is to be retrieved. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<PartnerID>PARTNERPK55</PartnerID>
<HostID>HOSTBNKPK12</HostID>
<HostUrlAlias>HOSTBNKPK12_URL_ALIAS</HostUrlAlias>
<OrderType>HVU</OrderType>
<orderIdPrefix>V</orderIdPrefix>
<Product>IBM EBICS Client</Product>
<productLang>EN</productLang>
<SecurityMedium>0200</SecurityMedium>
<UserID>USERPK55</UserID>
<VEUOrderTypes>C2C C2S</VEUOrderTypes>
</orderMetaData>
Using the HVZ order type, the user can download VEU overview with additional information.
Access
Mailbox
Description
HVZ is a download order type for distributed signature. Use the HVZ order type to download VEU overview with additional information. In the HVZ request, the subscriber optionally submits a list of order types for which the subscriber is authorized as a signatory. HVZ response order data contains the complete information of HVU response order data and HVD response order data, except the display file element.
Parameters
Parameter | Description and value |
---|---|
PartnerID | The partner ID associated with the user ID. |
HostID | The bank ID or the host ID of the bank to which the EBICS Client user submitted the order. It is a unique ID for the bank in the bank's system. |
HostUrlAlias | When configuring a bank profile, you can specify multiple host URLs and set one host URL as the default. If you want to send a request to a host URL that is not the default URL, then, specify a value for this parameter. |
OrderType | The order type of the order you are submitting. In this case, HVZ is the order type. |
orderIdPrefix | EBICS Client allocates a unique order ID to each order based on the bank, user ID, and the order type. The client generates the order ID as per EBICS specifications. The order ID is a 4-digit alphanumeric ID. You can specify the first character of the order ID. The second, third, and fourth characters of the order ID are alphanumeric in an ascending order (A-Z or 0-9). This parameter is used with EBICS protocol version H003 only. |
Product | The product for the EBICS Client application. |
productLang | The language setting of the EBICS Client application that you are using. For example, specify EN if the language is set to English. |
SecurityMedium | A 4-digit security number in the 0000 to 0499 range. |
UserID | Unique ID of the user in the bank's system, which corresponds to the user created in the EBICS Client dashboard. |
VEUOrderTypes | The order types in the form of an XML list for which HVZ data is to be retrieved. |
XML schema
<?xml version="1.0" encoding="UTF-8"?>
<orderMetaData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="new_omd.xsd">
<PartnerID>PARTNERPK55</PartnerID>
<HostID>HOSTBNKPK12</HostID>
<HostUrlAlias>HOSTBNKPK12_URL_ALIAS</HostUrlAlias>
<OrderType>HVZ</OrderType>
<orderIdPrefix>V</orderIdPrefix>
<Product>IBM EBICS Client</Product>
<productLang>EN</productLang>
<SecurityMedium>0200</SecurityMedium>
<UserID>USERPK55</UserID>
<VEUOrderTypes>C2X TST-Upload</VEUOrderTypes>
</orderMetaData>
Using the CCT order type, the user can initiate the credit transfer per Single Euro Payments Area (SEPA) specification set by the European Payment Council or Die Deutsche Kreditwirtschaft (DK (German)).
Access
Mailbox
Description
CCT is an upload order type that uses the protocol version H003 and H004.
XML schema
Using the CCU order type, the user can initiate the credit transfer for urgent payments.
Access
Mailbox
Description
CCU is an upload order type that uses the protocol version H003 and H004.
XML schema
Using the STA order type, the user can download the SWIFT daily accounts.
Access
Mailbox
Description
STA is a download order type that uses the protocol version H003 and H004.
XML schema
Using the VMK order type, the user can download the short-term acknowledgement slips.
Access
Mailbox
Description
VMK is a download order type that uses the protocol version H003 and H004.
XML schema
Using the CD1 order type, the user can initiate a single day debit, which allows the creditor to submit the collection file one day before the collection date.
Access
Mailbox
Description
CD1 is an upload order type that uses the protocol version H003 and H004.
XML schema
Using the CDD order type, the user can initiate a direct debit transaction.
Access
Mailbox
Description
CDD is an upload order type that uses the protocol version H003 and H004.
XML schema
Using the CRZ order type, the user can download the payment status report for each credit transfer. If a zip file containing numerous pain.002.003.03 messages is sent by EBICS server to the requesting EBICS client then, multiple files with same name in the mailbox are renamed. For example, files in mailbox : precisely.dat,precisely.dat,precisely.dat,precisely.dat, then the download zip contains, precisely.dat,precisely1.dat,precisely2.dat,precisely3.dat.
Access
Mailbox
Description
CDD is a download order type that uses the protocol version H003 and H004.
XML schema
Using the CDZ order type, the user can download the payment status report for each direct debit transaction.
Access
Mailbox
Description
CDZ is a download order type that uses the protocol version H003 and H004.
XML schema
Using the YCT order type the user can upload credit transfer initiation.
Access
Mailbox
Description
The YCT order type uses the protocol version H003 and H004.
File format
pain.001.001.03
XML schema
Using the YDD order type the user can upload direct debit initiation.
Access
Mailbox
Description
The YDD order type uses the protocol version H003 and H004.
File format
pain.008.001.02
XML schema
Using the XCT order type the user can upload credit transfer initiation.
Access
Mailbox
Description
The XCT order type uses the protocol version H003 and H004.
File format
pain.001.001.03
XML schema
Using the XTX order type the user can download payment status report for credit transfer.
Access
Mailbox
Description
The XTX order type uses the protocol version H003 and H004.
File format
pain.002.001.03
XML schema
Sterling B2B Integrator - Submit and sign an FUL order type
Sterling B2B Integrator - EBICS Client User
Sterling B2B Integrator - HAC Processing
Browse Categories
Share Blog Post
In today’s fast-paced world of data analytics and AI, optimizing your data infrastructure is key to unlocking valuable insights and driving innovation.
In today’s fast-paced world of data analytics and AI, optimizing your data infrastructure is key to unlocking valuable insights and driving innovation.
In today’s fast-paced world of data analytics and AI, optimizing your data infrastructure is key to unlocking valuable insights and driving innovation.
At Pragma Edge, we are a forward-thinking technology services provider dedicated to driving innovation and transformation across industries.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
Thank you for submitting your details.
For more information, Download the PDF.
Thank you for the Registration Request, Our team will confirm your request shortly.
Invite and share the event with your colleaguesÂ
IBM Partner Engagement Manager Standard is the right solution
addressing the following business challenges
IBM Partner Engagement Manager Standard is the right solution
addressing the following business challenges
IBM Partner Engagement Manager Standard is the right solution
addressing the following business challenges