Hi~ @_manoj_kumar_
Thank you for your answer.
I added a Dataset and call API
PATCH- 'https://platform.adobe.io/data/foundation/catalog/dataSets/{Dataset}'
Body -
[
{
"op": "add",
"path": "/tags/unifiedProfile",
"value": ["enabled:true", "isUpsert:true"]
},
{
"op": "add",
"path": "/tags/unifiedIdentity",
"value": ["enabled:true"]
}
]
I used a workflow to upload a CSV file and added it to the Dataset.
I call the API to know the Dataset status :
{
"65094353a5fd5428d3615b1e": {
"tags": {
"adobe/pqs/table": ["hashid_dataset"],
"adobe/siphon/table/format": ["parquet"],
"unifiedProfile": ["enabled:true", "isUpsert:true"],
"unifiedIdentity": ["enabled:true"]
}
}
}
But, dataset cannot be updated to profile.
API error :

{
"65094353a5fd5428d3615b1e": {
"tags": {
"unifiedProfile": [
"enabled:false",
"errors:UPDAEM-089032-500: UPS Store couldn't be created. Failed to create a store.,UPLIB-101500-500: Failed to create a store.,Internal error occurred. uri:PlatformUrl/data/core/ups/config/stores -> Status Code - 500 : message\n{\"requestId\":\"t:aep_catalog_event_prod_va7-p:6-o:216029252\",\"errors\":{\"500\":[{\"code\":\"500\",\"message\":\"XDM Descriptor info is not correct. Unable to find sourceProperty.\"}]}}",
"isUpsert:true"
]
}
}
}
Thank you.