Use these operations to access Storefront custom fields.
Storefront operations interact directly with the customer, and provide the customer with access to their own data.
To use Storefront operations, the customer must be issued a JWT with limited permissions. For more information, see Create a session with username and password and Exchange an authentication token. Storefront operations are intended to be used directly from an untrusted browser.
Retrieves the custom fields schema for a specified resource.
Security
CustomerJWT
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/storefront/custom-fields/{resource}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/storefront/custom-fields/{resource}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/storefront/custom-fields/{resource}
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/storefront/custom-fields/{resource}?limit=1000&offset=1000' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Schema of custom fields retrieved.
Array []
Describes the data type. The custom field type value cannot be changed.
Array of strings with up to 255 characters. The maximum size is 1000 elements.
Value:"array"
Discriminator
Response
- array
- boolean
- date
- datetime
- integer
- number
- string
- monetary
[ { "name": "string", "type": "array", "description": "string", "isEnabled": true, "additionalSchema": { … }, "_links": [ … ] } ]