meta {
  name: Update Content Link
  type: http
  seq: 3
}

patch {
  url: {{ENDPOINT}}content-links/1
  body: json
  auth: bearer
}

headers {
  Content-Type: application/json
}

auth:bearer {
  token: {{SONGWHIP_TOKEN}}
}

body:json {
  {
  	"name": "Updated Content Link",
  	"destinationUrl": "https://example.com/updated"
  }
}
