...
Code Block | ||
---|---|---|
| ||
$ curl -XGET /addresses,contacts/_forms/fields |
would give you something back likethe fields for addresses and contacts available to the current user, so something like this:
Code Block | ||
---|---|---|
| ||
{ "response": { "forms": { "addresses": [{ "title": "Address", "fields": [{ "key": "title", "title": "Title", "type": "text", "required": 1 }, ...] }], "contacts": [{ ... }], } }, "meta": { ... } } |
...
forms
: The forms for each object type, with optional configuration options.
We currently support the following form object types, which are being used in our mobile applications:
addresses
companies
contacts