Terms Object
Contains fields required to format User Terms
plaintextstring
Terms text in plaintext formatting.
htmlstring
Terms text in HTML formatting.
buttons object
Buttons to embed into the Terms.
agree object
I Agree Button.
textstring
Button text.
Example:
I Agree
disagree object
Disagree Button.
textstring
Button text.
Example:
No, Thanks
links object
Links to embed into the Terms.
website object
Website link.
textstring
Text for the link.
Example:
Website
urlstring
Link to the mod.io website.
Example:
https://mod.io
requiredboolean
Is this link required.
Example:
false
terms object
Terms of Use link.
textstring
Text for the link.
Example:
Terms of Use
urlstring
Link to the mod.io Terms of Use.
Example:
https://mod.io/terms
requiredboolean
Is this link required.
Example:
true
privacy object
Privacy Policy link.
textstring
Text for the link.
Example:
Privacy Policy
urlstring
Link to the mod.io Privacy Policy.
Example:
https://mod.io/privacy
requiredboolean
Is this link required.
Example:
true
refund object
Refund Policy link.
textstring
Text for the link.
Example:
Refund Policy
urlstring
Link to the mod.io Refund Policy.
Example:
https://mod.io/privacy
requiredboolean
Is this link required.
Example:
false
manage object
Manage User Account link.
textstring
Text for the link.
Example:
Manage Account
urlstring
Link to the mod.io page to manage a User's Account.
Example:
https://mod.io/me/account
requiredboolean
Is this link required.
Example:
false
Terms Object
{
"plaintext": "string",
"html": "string",
"buttons": {
"agree": {
"text": "I Agree"
},
"disagree": {
"text": "No, Thanks"
}
},
"links": {
"website": {
"text": "Website",
"url": "https://mod.io",
"required": false
},
"terms": {
"text": "Terms of Use",
"url": "https://mod.io/terms",
"required": true
},
"privacy": {
"text": "Privacy Policy",
"url": "https://mod.io/privacy",
"required": true
},
"refund": {
"text": "Refund Policy",
"url": "https://mod.io/privacy",
"required": false
},
"manage": {
"text": "Manage Account",
"url": "https://mod.io/me/account",
"required": false
}
}
}