Update an organization
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-data
Request Code Samples
curl --location --request PUT 'http://localhost:8080/v1/organizations/465c3df2-0fb5-458d-8222-e0033891fce9' \
--form 'name="my org"' \
--form 'email="rakajui@gmail.com"' \
--form 'phone="+8801828810189"' \
--form 'address="dhaka, bangladesh"' \
--form 'zip="6620"' \
--form 'city="dhaka"' \
--form 'state="dhaka"' \
--form 'country="bangladesh"' \
--form 'website_url="https://chatgpt.com"' \
--form 'logo=@"/home/raka/Downloads/linkedin_round.png"'
Responses
application/json {
"message": "string",
"success": true
}
Modified at 2024-07-11 05:59:50