put https://{subdomain}.pinpointhq.com/api/v1/structure_links/
Request format
In order to update a structure link you must send a JSON:API spec JSON object representing a structure link.
Differences from creation
This endpoint works much in the same way as the Create Structure Link, however it is more limited as only the accepts_speculative_applications
attribute can be updated.
None of the relationships can be updated; we suggest creating a new structure link rather than modifying an existing one.
Examples
{
"data": {
"id": "1",
"type": "structure_links",
"attributes": {
"accepts_speculative_applications: true
}
}
}