...
| Блок кода | ||
|---|---|---|
| ||
PUT https://ui.getintent.com/api/v1/<entity>/edit/<entity_id>?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": "new title",...}' -X PUT https://ui.getintent.com/api/v1/<entity>/edit/<entity_id>?token=<token> |
...