Get the current dynamic configuration
GET
/dynamic-config/v1
const url = 'https://example.com/dynamic-config/v1';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/dynamic-config/v1 \ --header 'Authorization: Bearer <token>'Get the current dynamic configuration
Retrieve the current dynamic configuration settings
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Current dynamic configuration
Media type application/json
object
blob_store_fetch_concurrency_limit
required
integer
Example generated
{ "blob_store_fetch_concurrency_limit": 1}