Skip to content
Snippets Groups Projects
Commit 91d1bec3 authored by DewanaGustavus's avatar DewanaGustavus
Browse files

fix: SOAP unquoted action issue

parent 5cfd22ea
Branches
Tags
No related merge requests found
......@@ -13,7 +13,7 @@ type Header = {
export async function SoapApiCall(url : string, method : string, params? : Object) {
const headers: Header = {
'Content-Type': 'text/xml;charset=UTF-8',
SOAPAction: '#POST',
SOAPAction: '\"POST\"',
'apiKey': REST_API_KEY
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment