Validate a Board Constraint Binding without persisting it.
POST
/api/workspace/admin/boards/boards/{boardId}/constraints/bindings/validate
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Post, RequestUri = new Uri("https://example.com/api/workspace/admin/boards/boards/example/constraints/bindings/validate"), Content = new StringContent("{ \"TriggerType\": 0, \"FromBoardStatusId\": \"example\", \"ToBoardStatusId\": \"example\", \"BoardStatusId\": \"example\", \"LogicalOperator\": 0, \"BoardStatementIds\": [ \"example\" ] }") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } }};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/admin/boards/boards/example/constraints/bindings/validate';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"TriggerType":0,"FromBoardStatusId":"example","ToBoardStatusId":"example","BoardStatusId":"example","LogicalOperator":0,"BoardStatementIds":["example"]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/workspace/admin/boards/boards/example/constraints/bindings/validate \ --header 'Content-Type: application/json' \ --data '{ "TriggerType": 0, "FromBoardStatusId": "example", "ToBoardStatusId": "example", "BoardStatusId": "example", "LogicalOperator": 0, "BoardStatementIds": [ "example" ] }'Authorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”boardId
required
string
Query Parameters
Section titled “Query Parameters”access_token
string
Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Request Body
Section titled “Request Body”Validate a Board Constraint Binding without persisting it.
object
TriggerType
integer format: int32
FromBoardStatusId
string
ToBoardStatusId
string
BoardStatusId
string
LogicalOperator
integer format: int32
BoardStatementIds
Array<string>
Validate a Board Constraint Binding without persisting it.
object
TriggerType
integer format: int32
FromBoardStatusId
string
ToBoardStatusId
string
BoardStatusId
string
LogicalOperator
integer format: int32
BoardStatementIds
Array<string>
Validate a Board Constraint Binding without persisting it.
object
TriggerType
integer format: int32
FromBoardStatusId
string
ToBoardStatusId
string
BoardStatusId
string
LogicalOperator
integer format: int32
BoardStatementIds
Array<string>
Responses
Section titled “Responses”OK
Media typeapplication/json
object
Data
Activation health for one Board Constraint Binding.
object
ConfigurationValid
boolean
RuntimeAvailable
boolean
CanEnable
boolean
ReachableTargetDefinitionIds
Array<string>
UncoveredTargetDefinitionIds
Array<string>
Issues
Array<object>
One safe localized Board Constraint configuration issue.
object
Code
string
Message
string
SubjectId
string
Errors
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Warnings
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Success
boolean
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Bad Request
Media typeapplication/json
object
Data
Activation health for one Board Constraint Binding.
object
ConfigurationValid
boolean
RuntimeAvailable
boolean
CanEnable
boolean
ReachableTargetDefinitionIds
Array<string>
UncoveredTargetDefinitionIds
Array<string>
Issues
Array<object>
One safe localized Board Constraint configuration issue.
object
Code
string
Message
string
SubjectId
string
Errors
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Warnings
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Success
boolean
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
Media typeapplication/json
object
type
string
title
string
status
integer format: int32
detail
string
instance
string
key
additional properties
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}