How we can create Material Request from Api?

I have added MR button on production order page and we want to create MR from production order page.

Check this,

https://frappe.io/docs/user/en/guides/integration/rest_api

@Sangram Api is not available for create material request

just send Material Request parameter in data

e.g.

POST - http://frappe.local:8000/api/resource/Material Request

data: {
	"naming_series": "MREQ-",
	"material_request_type": "Purchase",
	"items": [{items details here}]
}

check fields here - https://erpnext.org/docs/current/models/stock/material_request?

@Sangram thanks for reply