v1
latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KBTerms V2
Create Terms of Service URL
Create a signature for the given terms type. Atomically creates a signed TOS session and returns a stable signature_id to be used in the related onboarding request (terms.signature_id).
The returned url is a hosted page where the end-user can review the agreement and be redirected to redirect_url afterwards.
Supported `{type}` values are `BUSINESS_ONBOARDING` and `INDIVIDUAL_ONBOARDING`.
post/v2/terms/{type}/signatures
Path parameters
typestring required
Signature type. Supported values: BUSINESS_ONBOARDING, INDIVIDUAL_ONBOARDING.
Request body
Example request
{
"redirect_url": "https://www.partner.com/post-tos-acceptance"
}Response
Signature created successfully.
Example response
{
"url": "https://sandbox.1money.com/app/sign-agreement?session_token=5761166d-7187-41d1-bc48-e64a87274516&redirect_url=https%3A%2F%2Fwww.partner.com%2Fpost-tos",
"signature_id": "5761166d-7187-41d1-bc48-e64a87274516",
"expires_at": "2026-04-09T21:50:30Z",
"terms": [
{
"url": "https://www.1money.com/legal-and-privacy/privacy-policy",
"name": "Privacy Policy"
}
]
}