Custom Attributes
Custom attributes - Users
GET /account/custom-attributes
curl -X GET \
-H "Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
-H "Accept: application/json" \
-H 'cache-control: no-cache' \
'https://api.woowup.com/apiv3/account/custom-attributes'{
"payload": [
{
"label": "Fecha de vigencia",
"name": "vigencia",
"field_type": "datetime",
"data_type": "timestamp",
"group": null
},
{
"label": "Nro Socio",
"name": "nro_socio",
"field_type": "text",
"data_type": "string",
"group": "Datos del socio"
},
{
"label": "Tipo de Documento",
"name": "tipo_documento",
"field_type": "select",
"data_type": "string",
"group": "Datos del socio"
"options": [
{
"value": "CI",
"text": "CI"
},
{
"value": "DNI",
"text": "DNI"
},
{
"value": "LC",
"text": "LC"
},
{
"value": "PASS",
"text": "PASS"
},
{
"value": "LE",
"text": "LE"
},
{
"value": "S/D",
"text": "S/D"
}
]
},
{
"label": "Sede",
"name": "sede",
"field_type": "select",
"data_type": "string",
"group": null,
"options": [
{
"value": "Palermo",
"text": "Palermo"
},
{
"value": "Belgrano",
"text": "Belgrano"
}
]
}
],
"message": "ok",
"code": "ok",
"time": "22ms"POST /account/custom-attributes
PUT /account/custom-attributes/{name}
DELETE /account/custom-attributes/{name}
Custom attributes - Products
GET /account/product-custom-attributes
POST /account/product-custom-attributes
PUT /account/product-custom-attributes/{name}
DELETE /account/product-custom-attributes/{name}
Custom attributes - Purchases
GET /account/purchase-custom-attributes
POST /account/purchase-custom-attributes
PUT /account/purchase-custom-attributes/{name}
DELETE /account/purchase-custom-attributes/{name}
Custom attributes - Purchases Detail
GET /account/purchase-item-custom-attributes
POST /account/purchase-item-custom-attributes
PUT /account/purchase-item-custom-attributes/{name}
DELETE /account/purchase-item-custom-attributes/{name}
Last updated
Was this helpful?