...
| Блок кода | ||
|---|---|---|
| ||
PUT https://ui.getintent.com/api/v1/<entity>/new?token=<token> |
Use PUT request type. At JSON with object's structure have to be at request's body, request body should contain appropriate JSON object.
Example:
| Блок кода | ||
|---|---|---|
| ||
curl --data '{"name": "title",...}' -X PUT https://ui.getintent.com/api/v1/<entity>/new?token=<token> |
...