Skip to main content
Version: 2.0.0

Get a term substitution

This endpoint retrieves a term substitution.

HTTP Request

GET https://app.resemble.ai/api/v2/term_substitutions/<substitutionUuid>
URL ParametersTypeDescriptions
substitutionUuidstringUUID of the term substitution to retrieve

HTTP Response

{
"success": true,
"item": {
"uuid": <string>,
"original_text": <string>,
"replacement_text": <string>,
"created_at": <UTC Date>,
"updated_at": <UTC Date>,
}
}

Examples

NodeJS
1 2 3 4 5 6 7 import { Resemble } from '@resemble/node' Resemble.setApiKey('YOUR_API_TOKEN') const tsUuid = '...' const response = Resemble.v2.termSubstitutions.get(tsUuid) const substitution = response.item

Try it out

API Key:
Term Substitution UUID: