API
A full REST API for the Joyfill Platform
The Joyfill API gives you all functionality to store, query, and manage Forms, Templates, Exports, Libraries, and more.
The Joyfill API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
See our API Reference for a list of endpoints
Identifiers
Identifiers represent readable IDs for resources inside of Joyfill. Identifiers are the primary way you will query, update, and remove resources via the Joyfill API.
Joyfill will auto generate a unique identifier for each new resource that you create. Each identifier will be unique only to your organization.
Resource Examples
Resource | Example |
---|---|
Group | group_************* |
User | user_************** |
Document/Template | doc_*************** |
Document/Template Field | field_************* |
Custom Identifiers
Joyfill identifiers can be set to custom values at the moment of resource creation. The custom identifier can be an ID inside your own database or some other value that helps you connect and uniquely identify the associated resource between Joyfill and your own system.
Requirements
- Custom identifiers must be unique.
- Type: String, Minimum Length: 3, Max Length: 50.
- Alphanumeric and
_
characters only.
Updated 6 months ago