OBJECT

PaymentRequest

Payment request record

link GraphQL Schema definition

  • type PaymentRequest {
  • # amount of the payment request
  • amount: Float
  • # Appraisal of the payment request
  • appraisal: Appraisal
  • # Reference for the destination bank account
  • bankAccountReference: String
  • # Contact of the payment request
  • contact: Contact!
  • # Contract of the payment request
  • contract: Contract
  • # Payment request ID in Rello's system
  • externalRellopayId: String!
  • # ID of payment request
  • id: ID!
  • # Payment request message
  • message: String!
  • # Payment page url for the payment request
  • paymentPageUrl: String!
  • # Payment request payment type
  • paymentType: PaymentOptionsEnum
  • # Property of the payment request
  • property: Property
  • # if the payment request has a receipt saved
  • receiptSaved: Boolean
  • # Payment request reference
  • reference: String!
  • # Associated Rello bank account for the payment request
  • rellopayBankAccount: RellopayBankAccount
  • # Payment request status
  • status: PaymentRequestStatusesEnum!
  • }