Run Matcher
POST
/admin/run-matcher
const url = 'https://example.com/admin/run-matcher';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/admin/run-matcher \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
MatcherRunOut
object
pairs_compared
required
Pairs Compared
integer
pairs_created
required
Pairs Created
integer
Examplegenerated
{ "pairs_compared": 1, "pairs_created": 1}