Listing Record Fields
GET /restapi/1.0/object/res.partner/fields_get?allfields=[]&attributes=['string','help','type'] HTTP/1.1
Host: {your_Odoo_server_url}HTTP/1.1 200 OK
{
'fields': {
'ean13': {
'type': 'char',
'help': 'BarCode',
'string': 'EAN13'
},
'property_account_position_id': {
'type': 'many2one',
'help': 'The fiscal position will determine taxes and accounts used for the partner.',
'string': 'Fiscal Position'
},
'signup_valid': {
'type': 'boolean',
'help': '',
'string': 'Signup Token is Valid'
},
'date_localization': {
'type": 'date',
'help": '',
'string': 'Geo Localization Date'
},
'ref_company_ids': {
'type': 'one2many',
'help': '',
'string': 'Companies that refers to partner'
},
'sale_order_count': {
'type': 'integer',
'help': '',
'string': '# of Sales Order'
},
'purchase_order_count': {
'type': 'integer',
'help': '',
'string': '# of Purchase Order'
}
}
}Headers and Status Codes
Description
Last updated