Syncing Your Customer List
Keep your portfolio in Strise synchronized with your internal systems via the Connect API.
Finding a Company’s Internal ID
Use the companyIdentifierSearch query to look up a company by its organization number and country code. This returns the Strise internal ID you will need for subsequent API calls.
query {
companyIdentifierSearch(
input: {
nationalId: "123456789"
country: NO
}
) {
id
name
identifiers {
nationalId
country
}
}
}Adding a Company to Your Portfolio
Once you have the company’s Strise ID, add it to your monitoring portfolio using the companyAddToMonitoring mutation:
mutation {
companyAddToMonitoring(
input: {
companyId: "company-global-id"
}
) {
company {
id
name
monitoringStatus
}
}
}Tip: For bulk operations, use the
companiesAddToMonitoringmutation to add multiple companies in a single API call.
Removing a Company from Your Portfolio
To remove a company from monitoring, use the CompanyRemoveFromMonitoring mutation:
mutation {
CompanyRemoveFromMonitoring(
input: {
companyId: "company-global-id"
}
) {
company {
id
name
monitoringStatus
}
}
}Note: Removing a company from monitoring does not delete any data. The company’s screening history and review data are retained.
Last updated on