This question has been flagged
6 Replies
25948 Views

Hello,

I want to develop API for adding customer or product and also generate PDF. How it can be done in odoo or in python? How this created API test in postman? please suggest me good documentation for both.  

Avatar
Discard
Best Answer

Hi,

See how can postman is used for the mobile api development in Odoo : https://www.youtube.com/watch?v=wGvuRbCyytk&t=23s

Thanks

Avatar
Discard
Best Answer

Hi,

For creating new API and handling external API's you can refer our following blogs

Creating API For External Entities In Odoo

Handling External APIs in Odoo

Odoo Official XMLRPC API Documentation

Update:

Also refer the blog regarding the configuration of Postman for sending the API requests

https://www.cybrosys.com/blog/configure-postman-for-sending-api-requests

Regards

Avatar
Discard
Best Answer

https://www.odoo.com/documentation/12.0/webservices/odoo.html

https://odoo-restapi.readthedocs.io/en/latest/

Avatar
Discard

import requests

@api.onchange('btn_funtion')

def get_details(self):

http = urllib3.PoolManager()

URL = 'https://vpic.nhtsa.dot.gov/api/vehicles/DecodeVin/' + str(self.vin_number) + '?format=json&modelyear=2011'

datas = http.request('GET', URL)

datas = json.loads(datas.data.decode('utf-8'))

datas = datas.get('Results')

its a simple button funtion using python request library to connect to US vehicle dipartment

Author Best Answer

Thanks @shalin wilson and @\Cybrosys Techno Solutions Pvt.Ltd​ 

For your help and time. Information given by both of you helpful

Avatar
Discard