Hi,
i'm using IonApiService to call a provider service from ionAPi (a non Infor api). This worked since last week.
here is an example :
executeIonApi(){
const headers = { 'Accept': '*/*','Content-Type':'*/*'};
const url = CustomerApi/PARTNER/api/OPERATION;
const request: IonApiRequest = {
url: url,
method: "POST",
headers: headers,
responseType: 'text',
data:this.getbodyData()
}
IonApiService.Current.execute(request).then((response: any) => {
// use the response
}).catch((response: IonApiResponse) => {
//log the error
});
}
When executing this, i have now an error 500 with no more information, even in ion api monitoring.
But when executing the service in postman, it works with no problem.