Hi.
I have the following structure of the XML file called data.xml
<?xml version="1.0" encoding="UTF-8"?>
!--scriptorstartfragment-->
<Message>
<ErrDiscoverCode>10</ErrDiscoverCode>
<Description>data10data</Description>
</Message>!--scriptorendfragment-->
I need to be able to import this data into IFS, and I'm doing this with Postman using this API.
Post:
https://*******/int/ifsapplications/entity/v1/WorkOrderDiscCodeEntity.svc/WorkOrderDiscCodeSet
{
"ErrDiscoverCode": "10",
"Description": "data10data"
}

I'm unable to register the following data in IFS:

What is the procedure for registering IFS data that comes from an XML file?
Thanks