Hello Miro Community,
I am building an onboarding automation and I’m using an HTTP request to invite users to our team. Here is what I have so far:
{
"uri": "https://api.miro.com/v1/teams/{team_id}/invite",
"method": "POST",
"headers": {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "*sanitized*"
},
"body": {
"email": "{user_email_address}"
}
}
I do have the team_id correct in the actual request and the bearer token inserted in the Authorization header. I’m following the instructions here. I can run this request in Miro’s test request on this page and it works fine. However, when I send my request from my automation, I get this error:
"body": {
"status": 500,
"code": "internalError",
"message": "Internal Error",
"type": "error"
}
Has anyone else run into an issue like this? Is there something I can adjust in my request to get this to run successfully?