Custom Index Management
Create Custom Index
Use this API to trigger the creation of a custom search index for data elements. The response will include the runId that can be used to query the current creation status using the Get Index Creation Status API.
🗒 Things to Know
- Each account is limited to only one custom search index.
post/api/consentmanager/v1/custom-indexes
Request body
Example request
{
"operationName": "CREATE_DATA_ELEMENT_SEARCH_INDEX",
"parameters": {
"dataElementName": "City"
}
}Response
Index creation successfully triggered
Example response
{
"runId": "123e4567-e89b-12d3-a456-426614174000",
"status": "InProgress"
}