We have the Data field as follows:
const options = {
url: '',
method: '',
headers: {
'Content-Type': 'application/form-data',
'Accept': '',
'AccessKey': ''
},
params: {
'secureKey': ''
},
body: {
'username': 'Alex',
‘age’: ‘19’,
‘gender’: ‘male’
}
}
With each field having the values, when we test this body field, we get an Invalid Organization Key Error, meaning that the params (secureKey) is not read in the Data field body, How do we solve such an issue, we are writing in form-data format.