benjolo's picture
Adding source files
35b1c40 verified
raw
history blame contribute delete
269 Bytes
import requests
URL = "http://127.0.0.1:8080"
headers = {'accept': 'application/json'}
request_data = {
"call_id": "TESTID000001"
}
response = requests.post(URL+'/call/', headers=headers, params=request_data)
print(response)
assert response.status_code == 201