https://developer.ebay.com/devzone/xml/docs/reference/ebay/GetSellerList.html Im geting this error <?xml version="1.0" encoding="UTF-8" ?><eBay>
<EBayTime>2023-11-15 18:30:37</EBayTime><Errors>
<Error>
<Code>10012</Code><SeverityCode>1</SeverityCode><Severity>SeriousError</Severity><Line>0</Line><Column>0</Column><ErrorClass>RequestError</ErrorClass><ShortMessage><![CDATA[Invalid value for header "X-EBAY-API-DETAIL-LEVEL".]]></ShortMessage>
</Error>
</Errors>
</eBay> and this are mi headers headers: {
'Content-Type': 'text/xml',
'X-EBAY-API-CALL-NAME': 'GetSellerList',
'X-EBAY-API-SITEID': '0',
'X-EBAY-API-COMPATIBILITY-LEVEL': '967',
'X-EBAY-API-APP-NAME': `${this.EBAY_APP_ID}`,
'X-EBAY-API-CERT-NAME': `${this.EBAY_APP_DEV_ID}`,
'X-EBAY-API-DEV-NAME': `${this.EBAY_APP_SECRET}`,
'X-EBAY-API-DETAIL-LEVEL': 'ReturnAll',
}, In the documentation its seems that i dont nead any of the headers below the X-EBAY-API-COMPATIBILITY-LEVEL, but in mi code its asking me for all that headers. Im using xml2js to build the xml and im developing in typescript! if anyone happend to have the solution or the same problem pls write!