I'm trying to create a test service, using the example request in the docs here: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/managing-services-a....
Using postman, I'm sending a post to (changed the org ids etc.):
https://mc.adobe.io/1234567890ABCDEF@AdobeOrg/campaign/profileAndServices/service/
with a json body:
{
"label": "Test Service",
"messageType": "email",
"name": "test_service",
"start": "2020-07-28"
}
I've got the right headers of the authorization and x-api-key etc.
However, I'm getting back a 400 error:
{"error_code":"400051","message":"No match in backends for the given tenant id."}
What does that mean? How can I approach this?