v13

latestOpenAPI 3.0.3raw.githubusercontent.com2023-04-2781846.8 KB
Account Configuration

Update Default Profile

Updates the default ingest profile for the account.

put/accounts/{{account_id}}/configuration

Path parameters

account_idstring required

Video Cloud account ID.

Headers

Content-Typestring required
Example:application/json

Content-Type: application/json

Authorizationstring required

Authorization: Bearer access_token (see Getting Access Tokens)

Request body

account_idnumber required

Video Cloud account ID

idstring required

the configuration id (if you do not have it, make a GET request to get it)

default_profile_idstring required

The id or name of the profile you want to set as the default

default_live_profile_idstring

The id or name of the live profile you want to set as the default

default_social_clipping_profile_idstring

The id or name of the profile you want to set as the default for creating social clips

Example request

{
  "default_profile_id": "multi-platform-standard-static"
}

Response

SUCCESS

account_idnumber

Video Cloud account id

idstring

configuration id

default_profile_idstring

profile name for video-on-demand

default_live_profile_idstring

default profile name for live streams

date_creatednumber

when the profile was created (epoch time in milliseconds)

date_last_modifiednumber

when the profile was last modified (epoch time in milliseconds)

versionnumber

system-managed version number

Example response

{
  "version": 1526447969284,
  "account_id": 57838016001,
  "default_profile_id": "videocloud-default-v1",
  "default_live_profile_id": "Live - Standard",
  "date_created": 1526447969283,
  "date_last_modified": 1526447969283,
  "id": "55525f84e4b08e946aa03281"
}