Hi @janp42
Adding my thoughts here - as you already went through documentation.
I hope the URL follow the correct pattern and there is no syntactical error,
https://mc.adobe.io/{tenant}/target/properties?authorizationScope=profile_api
{tenant} need to be replaced by actual name and also you're sending the correct authentication header info.
Quick question - did you try this request in Postman or using Curl command? If no then give a try which shows you the detail feedback in response which tell you what's wrong.
curl -X GET \
'https://mc.adobe.io/{tenant}/target/properties?authorizationScope=profile_api' \
-H 'Authorization: Bearer <Access_Token>' \
-H 'x-api-key: <Your_API_Key>' \
-H 'Content-Type: application/json'
Check the response for 500 error...
let us know how it goes, feel free to post further info.
Thanks
Hi @gokul_agiwal,
the endpoint https://mc.adobe.io/{tenant}/target/properties is working well – that is the reason why I'm thinking now, that the authentication endpoint is faulty.
When I try
curl -X POST \
"https://mc.adobe.io/{tenant}/target/authentication/token?authorizationScope=profile_api" \
-H "Authorization: Bearer <token>" \
-H "x-api-key: <API Key>" \
-H "Content-Type: application/json" \ I get
{
"httpStatus": 500,
"requestId": "DBvekhBEvGa3LvEgpSXPZHUwjbFEXc1g",
"requestTime": "2025-11-05T11:31:20.017954133Z",
"errors": [{
"errorCode": "INTERNAL_SERVER_ERROR.Service",
"message": "Internal Server Error",
"meta": {}
}]
}Same result with GET method. I tested it with postman and my Mac terminal.
I think I need to contact customer care to get this issue resolved.
Thank you guys for your help!