OBJECT

RellopayIntegration

RelloPay Integration

link GraphQL Schema definition

  • type RellopayIntegration {
  • # When the RelloPay integration was created
  • createdAt: ISO8601DateTime!
  • # enabled products of the RelloPay integration
  • enabledProducts: [ProductTypesEnum!]!
  • # ID of the RelloPay integration
  • id: ID!
  • # owner of the RelloPay integration (office or account)
  • integrationOwner: IntegrationOwner
  • # associated relloPay bank accounts of the RelloPay integration
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # linked: Filter for relloPay bank accounts linked to eagle trust
  • # or trading bank accounts
  • rellopayBankAccounts(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • linked: Boolean
  • ): RellopayBankAccountConnection!
  • # relloPay merchant id of the RelloPay integration
  • rellopayMerchantId: String
  • # status of the RelloPay integration
  • status: RellopayIntegrationStatusEnum!
  • # When the RelloPay integration was last updated
  • updatedAt: ISO8601DateTime!
  • }