Update company
Edit the company
Authorizations
Body
namestringOptionalDefault:
The New Shire
website_urlstringOptionalDefault:
https://50skills.thenewshire.com
logostring · uriOptionalDefault:
https://s3-eu-west-1.amazonaws.com/50-journeys-static/public/jZxwxtwl/logo/the-new-theshire-logo-v2.png
Responses
200Success
application/json
401
Unauthorized
404
Not found
patch
import requests
response = requests.patch(
"https://journeys-api.50skills.app/v1/company/",
json={
"name": "The Shire",
}
)
print(response.json())
{
"name": "The New Shire",
"website_url": "https://50skills.thenewshire.com",
"logo": "https://s3-eu-west-1.amazonaws.com/50-journeys-static/public/jZxwxtwl/logo/the-new-theshire-logo-v2.png"
}
Request samples
{
"name":"The New Shire",
"websiteUrl":"https://thenewshire.50skills.com",
"logo":"https://s3-eu-west-1.amazonaws.com/50-journeys-static/public/jZzwxywD/logo/theshire-logo-v2.png"
}
Response samples
{
"name":"The New Shire",
"websiteUrl":"https://thenewshire.50skills.com",
"logo":"https://s3-eu-west-1.amazonaws.com/50-journeys-static/public/jZzwxywD/logo/theshire-logo-v2.png"
}
Last updated