importTrancheRate
Import a tranche rate for a given contract and market.
Arguments
Input fields for importing a tranche rate.
Possible Errors
- KT-CT-1111: Unauthorized.
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-15111: Tranche target not found.
- KT-CT-15112: A tranche rate already exists for this target and calculation period.
- KT-CT-15113: Invalid tranche rate input.
- KT-CT-15114: The provided calculation period does not line up with the calculation period frequency for this tranche target.
- KT-CT-15115: Contract not found.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Query Complexity
6Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation ImportTrancheRate($input: ImportTrancheRateInput!) {
importTrancheRate(input: $input) {
rateIdentifier
}
}
Variables
{
"input": ImportTrancheRateInput
}
Response
{
"data": {
"importTrancheRate": {
"rateIdentifier": "66487955"
}
}
}