Skip to main content
PUT
/
api
/
v1
/
projects
/
{project_id}
Update Project
curl --request PUT \
  --url https://api.example.com/api/v1/projects/{project_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Name": "<string>",
  "Logo": "<string>",
  "ContentLanguage": "<string>",
  "WebsiteUrl": "<string>",
  "ServicesOffered": "<string>",
  "CustomerProfile": "<string>",
  "TargetCountries": [
    "<string>"
  ],
  "PostTopic": "<string>"
}
'
{
  "data": {},
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Body

application/json
Name
string | null
Logo
string | null
ContentLanguage
string | null
WebsiteUrl
string | null
ServicesOffered
string | null
CustomerProfile
string | null
TargetCountries
string[] | null
PostTopic
string | null

Response

Successful Response

success
boolean
required
data
unknown