Versions Compared

Key

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

Inputs (Array[] of UpdateTransferReceiverState to update)

Name

Type

Description

Mandatory

Available from version

BrickId

Guid

 This is the unique id of the transfer receiver which state should be updated

 Yes


TargetState

string

The desired state to which the admission status should be updated.

Available states:

Admission_Created
Admission_Active
Admission_PendingCancelConfirmation
Admission_Cancelled
Admission_PendingCreateConfirmation
Admission_ToBeCancelled
Admission_Rejecte

 Yes







Outputs

Name

Type

Description

Available from version

Entities

Array

All UpdateTransferReceiverStates in the request is returned. And an array of Errors per UpdateTransferReceiverState.






Code examples

XML request example
Code Block
languagexml
Content-Type: text/xml; charset=utf-8

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:tns="http://tempuri.org/" 
    xmlns:s1="http://microsoft.com/wsdl/types/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/">
    <soap:Body>
        <UpdateTransferReceiverStates xmlns="http://tempuri.org/">
            <req>
                <Credentials>
                    <UserName>{{username}}</UserName>
                    <Password>{{password}}</Password>
                </Credentials>
                <identify>{{identify}}</identify>
                <Entities>
                    <UpdateTransferReceiverState>
                        <BrickId>996eb28f-99ab-4643-99b1-000000000000</BrickId>
                        <TargetState>Admission_ToBeCancelled</TargetState>
                    </UpdateTransferReceiverState>
                </Entities>
                <Fields>
                    <TargetState>true</TargetState>
                </Fields>
            </req>
        </UpdateTransferReceiverStates>
    </soap:Body>
</soap:Envelope>

...