POST /v1/projects/{id}/default

Authentication

Bearer Token

Path Parameters

id string required path

Responses

200 Default updated
application/json
success boolean
404 Error response
curl -X POST 'https://screenframed.com/v1/projects/string/default' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://screenframed.com/v1/projects/string/default', {  method: 'POST',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.post('https://screenframed.com/v1/projects/string/default', headers=headers)print(response.json())
200 Response
{  "success": true}
Ask a question... ⌘I