Hi Francisco,
I'm Angel, tech lead at ORCID! I'm not familiar with the fetch library, however, I'm wondering why the mode is set to 'cors'? This is not a cross origin call, is a simple http request, so, I think this should work:
```
method: 'POST',
body: formBody,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
```
Please let me know how it goes, thanks!
Thanks