Identification Frameworks to Identifiers in Domains
If migrating from identification frameworks to identifiers in domains, there are some API changes. Use this page to navigate the differences and find the new API calls to use. Click the endpoints to visit the reference guide with details about the parameters, payloads, and responses.
View a specific identifier by name
GET
/sdd/classifier/{classifierName}
You can no longer search by name, but you can search by ID:
Add data sources to an identification framework
PUT
/sdd/template/apply
Identification frameworks have been removed. Instead, add data sources to a domain with identifiers:
POST
/domain/{domainId}/datasources
Run identification
The payload would dictate if identification was running on a list of data sources or all data sources.
POST
/sdd/run
The payload will dictate if identification runs on a list of data sources or all data sources in a single domain.
Create an identification framework
POST
/sdd/template
If you were previously using frameworks, now you should create a new domain:
POST
/domain
And add identifiers to your domain:
POST
/sdd/identifier/bulk-copy/{domainId}
View the current global framework
GET
/sdd/template/global
No substitute, as the global framework no longer exists.
List or search for identification frameworks
GET
/sdd/template
Identification frameworks functionality has been replaced by domains, so use the domains search:
GET
/domain
View a specific identification framework by name
GET
/sdd/template/{templateName}
Identification frameworks functionality has been replaced by domains, so use the domains search:
GET
/domain/name/{domainName}
Clone an identification framework
POST
/sdd/template/{templateName}/clone
No substitute, as identification frameworks no longer exist, and you cannot copy domains.
Update an identification framework
PUT
/sdd/template/{templateName}
Identification frameworks functionality has been replaced by domains. You can bulk copy identifiers to a domain:
POST
/sdd/identifier/bulk-copy/{domainId}
Or you can bulk delete identifiers to a domain:
POST
/sdd/identifier/bulk-delete
Delete an identification framework
DELETE
/sdd/template/{templateName}
Identification frameworks functionality has been replaced by domains, so use the domains delete:
DELETE
/domain/{domainId}
Last updated
Was this helpful?