Skip to content

shahid-ullah/predictorAPI

Repository files navigation

To clone this project you must have git LFS installed.

See post on git lfs for details.

An Example of API Call using python Requests module

Post method

>>> import requests
>>> import json
>>> import time
>>> dic = {'from_office_id': 28, 'from_office_unit_id': 4643,
		   'from_officer_id': 77162, 'from_officer_designation_id': 2088,
		   'to_office_id': 2088, 'to_office_unit_id': 10456,
		   'to_officer_id': 86, 'to_officer_designation_id': 4486
       	}
>>> response = requests.post("http://localhost:8000/api/", json=dic)
>>> response_text = response.text
>>> user_id = json.loads(response_text)

>>> user_id
{'user_id': 11783}


An Example of API Call using Postman

post method

send data to request body as json type.

Body->raw->JSON

The required dictionary data.

{"from_office_id": 28, "from_office_unit_id": 4643, "from_officer_id": 77162, "from_officer_designation_id": 2088, "to_office_id": 2088, "to_office_unit_id": 10456, "to_officer_id": 86, "to_officer_designation_id": 4486}


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages