I am running requests in the following format:
http.post(
`${baseURL}/catalog/entries`,
JSON.stringify(createCatalogRequestBody(data[1].realmId, catalogName)),
headers,
{
tags: {
requestType: 'createCatalog',
},
},
);
as you can see, I have custom headers. Am I doing it the right way?