Creates a custom cashier property set. A custom property set is a JSON-schema to extend the hosted cashier deposit request form with extra form fields. The collected information is stored at the cashier deposit request.
Custom cashier property set resource.
name required | string Name of the custom property set. |
properties required | object Defines properties the user can complete when they use the hosted cashier form.
This field accepts JSON-schema drafts 4, 6, and 7.
Accepted properties types are: |
Custom cashier property set created.
Location | string <uri> Location of the related resource. Example: "https://api.rebilly.com/example" |
name required | string Name of the custom property set. |
properties required | object Defines properties the user can complete when they use the hosted cashier form.
This field accepts JSON-schema drafts 4, 6, and 7.
Accepted properties types are: |
id | string <= 50 characters Unique resource ID. Defaults to UUID v4. |
Unauthorized access. Invalid credentials used.
Access forbidden.
Invalid data sent.
{- "name": "string",
- "properties": {
- "type": "object",
- "properties": {
- "email": {
- "type": "string"
}, - "max": {
- "type": "integer",
- "minimum": 0,
- "exclusiveMaximum": 100
}
}, - "required": [
- "email"
]
}
}
{- "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21",
- "name": "string",
- "properties": {
- "type": "object",
- "properties": {
- "email": {
- "type": "string"
}, - "max": {
- "type": "integer",
- "minimum": 0,
- "exclusiveMaximum": 100
}
}, - "required": [
- "email"
]
}
}