As per the api doc: https://developers.intercom.com/intercom-api-reference/reference/create-a-conversation
When creating conversation, We should send the type as lead in from object. But on doing so, I get the error, user not found.
{
"type": "error.list",
"request_id": "00034vg9jrnkg43k9mf0",
"errors": [
{
"code": "not_found",
"message": "User Not Found"
}
]
}
But when I change type to `user`, it worked.
Expected:
For lead, we should pass type as `lead` only not `user`.