CreatePledge
Signature
mutation {
CreatePledge(transactionId: ..., securitiesNumber: ..., bankName: ..., bankAddress: ..., initialEndDate: ...)
}
Retourne : Pledge
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
transactionId | ID! | ✓ | — | — |
securitiesNumber | Float! | ✓ | — | — |
bankName | String! | ✓ | — | — |
bankAddress | AddressInput! | ✓ | — | — |
initialEndDate | Date! | ✓ | — | — |
startDate | Date | — | — | |
agreementDocument | UploadDocument | — | — |
Exemple
mutation {
CreatePledge(
transactionId: $transactionId
securitiesNumber: $securitiesNumber
bankName: $bankName
bankAddress: $bankAddress
initialEndDate: $initialEndDate
) {
id
transaction {}
security {}
securityTypeDetailed {}
numberingStart
numberingEnd
securitiesNumber
status {}
numberOfDecimals
bankName
bankAddress {}
agreementDocument {}
releaseDocument {}
startDate
initialEndDate
actualEndDate
}
}