Unable to create new lead profile in a different partition through REST API for already existing lead in default partition
Still figuring how the Partitions work on Marketo. We are looking for a way to create new users through REST API on a specific partition called "APAC" on our Marketo. Net new leads are being added just fine; however; those leads who are already in a default Partition with same email address are not being added into the "APAC" partition.
Below is our JSON body:
{
"input": [
{"email":"test@test.com"}
],
"action":"createOrUpdate",
"partitionName":"APAC"
}
Here is the output we are seeing, but no change on Marketo.
{
"requestId": "16835#17a61d9d767",
"result": [
{
"id": 5571,
"status": "updated"
}
],
"success": true
}