GetDecisionMakers

GetDecisionMakers

Filter inputs

Name

Type

Description

Mandatory

Available from version

Name

Type

Description

Mandatory

Available from version

BrickIds

Guid[]

 

 

  2.12

Persons

Guid[]

 DecisionMakers filtered on the BrickId of a Legal Entity (GetPersons)

 

  2.12

Orders

Guid[]

 DecisionMakers filtered on the BrickId of Orders

 

  2.12

Comments

string[]

 DecisionMakers filtered on Comments

 

  2.12

Response rows (Array) inherits from EntityBase

Name

Type

Description

Available from version

Name

Type

Description

Available from version

BrickId

Guid

The BrickId (unique id) of the DecisionMaker

 2.12

Person

Guid

Id of the Person that is DecisionMaker

  2.12

Order

Guid

Id of the Order associated with the DecisionMaker

 2.12

Code examples

C# - Get DecisionMakers from a BFS instance
 public static void GetDecisionMakers() { var binding = new BasicHttpBinding(); binding.MaxReceivedMessageSize = Int32.MaxValue; var target = new bfsapi.bfsapiSoapClient(binding, new EndpointAddress("http://localhost:20010/bfsapi.asmx")); var req = new GetDecisionMakerRequest(); req.Credentials = new bfsapi.Credentials { UserName = "user", Password = "password" }; req.identify = "identify"; req.Args = new GetDecisionMakerArgs { Orders = new[] {new Guid("5r5fb137-a0b5-4fd1-8a36-46594673bec3") } }; req.Fields = new GetDecisionMakerFields { BrickId = true, Person = true }; var resp = target.GetDecisionMakers(req); }

 

 

Terms of License
Change Policy
© 2009 - 2026 Done Technologies AB All rights reserved