YPW
YPW is a technology startup that was founded in 2018 with the goal of developing technologies and ecosystems of applications for businesses. The company offers development services for applications, websites, and systems, and is currently in a phase of accelerated growth.
info@ypw.com.do
ypw@suport.com.do
ypwsrl
Integrate your app into our ecosystems
A brief example of integration via API
##Example Register YPW Account
import requests
import json
url = "https://account.ypw.com.do/api/v1/account/register"
payload = json.dumps({
"username": "your name",
"password": "new password",
"name": "your name",
"email": "your email",
"phone": "your phone"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
prints(response.text)