Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Inputs (Array of AllocationProfiles) inherits from EntityBase

Name
Type
Description
MandatoryAvailable from version
BrickIdGuidNot used.  
KeyStringThe key of the allocation profile, this can be any string and is only used for your referenceTrue 
NameString

The name of the allocation profile

True 
OwnerGuidThe owner associated with the allocation profileTrue 
AllocationItemsAllocationItem[]

Array of AllocationItem

  

Outputs

Name
Type
Description
Available from version
EntitiesArray

All allocation profiles in the request is returned along with each allocation profiles's BrickId and array of Errors per allocation profile

 
Code Block
languagexml
themeRDark
titleXML request example
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
 <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
 	<GetAllocationProfiles xmlns="http://tempuri.org/">
 		<req>
 			<Credentials>
 				<UserName>yourusername</UserName>
 				<Password>yourpassword</Password>
 			</Credentials>
 			<identify>youridentifier</identify>
 			<Args>
 				<BrickId xsi:nil="true" />
 				<Owner xsi:nil="true" />
 				<Key>AllocationProfile1</Key>
 			</Args>
 			<Fields>
 				<BrickId>true</BrickId>
				 <Name>true</Name>
 				<Key>true</Key>
 				<AllocationItems>false</AllocationItems>
 				<Owner>true</Owner>
 			</Fields>
 		</req>
 	</GetAllocationProfiles>
 </s:Body>
</s:Envelope>

...