| ... | ... | @@ -67,11 +67,19 @@ Per crear una CE, cal passar a la petició POST a https://somcomunitats.coop/wp- |
|
|
|
```json
|
|
|
|
|
|
|
|
{
|
|
|
|
"title":"títol del post",
|
|
|
|
"odoo_company_id":"número de la company"
|
|
|
|
"title":{"type": "string", "required":true},
|
|
|
|
"odoo_company_id":{"type":"string", "required":true},
|
|
|
|
"status":{"type": "string", "options": {
|
|
|
|
"0": "publish",
|
|
|
|
"1": "future",
|
|
|
|
"2": "draft",
|
|
|
|
"3": "pending",
|
|
|
|
"4": "private"
|
|
|
|
}, "required": false }
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
En el següent exemple creem un nou post per una nova CE, amb títol "test-desde-bash" i associat a la company 5. Hem de passar els següent header:
|
|
|
|
|
|
|
|
```
|
| ... | ... | |
| ... | ... | |