Changes
Page history
Update WPCT REST CE Landing API
authored
Mar 02, 2023
by
Pau Pulido
Hide whitespace changes
Inline
Side-by-side
WPCT-REST-CE-Landing-API.md
View page @
a01625d4
...
@@ -67,11 +67,19 @@ Per crear una CE, cal passar a la petició POST a https://somcomunitats.coop/wp-
...
@@ -67,11 +67,19 @@ Per crear una CE, cal passar a la petició POST a https://somcomunitats.coop/wp-
```
json
```
json
{
{
"title"
:
"títol del post"
,
"title"
:{
"type"
:
"string"
,
"required"
:
true
},
"odoo_company_id"
:
"número de la company"
"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:
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:
```
```
...
...
...
...