Reopen a Closed Tradeline

Reopen a tradeline that has been closed in Bloom's Enablement Services

Prerequisites:

  1. User must be open. A user is open if the me query returns a null closed_at date.
  1. User must have at least one active connection (connection must not be closed or disconnected).
  2. Tradeline to be reopened must have been closed by the user.
    1. Tradelines closed due to inactivity are reopened automatically upon receiving a new transaction.

Procedure:

Example (reopening a rent tradeline):

mutation ReopenTradeline {
    reopenTradeline(
        input: { tradelineId: "019f1e57-9f62-7840-a544-0202a8583a7c" }
    ) {
        tradeline {
            id
            merchant
            category
            status
            isEligible
            paymentFrequency
            lastTransactionDate
            transactionCount
            details {
                ... on RentTradelineDetails {
                    serviceAddressString
                    serviceAddressType
                    leaseStartDate
                    isPrimaryAddress
                    hasOtherMortgageOrRent
                }
            }
            createdAt
            updatedAt
            reportedConsumerAccountNumber
        }
    }
}

Example response:

{
    "data": {
        "openClosedTradeline": {
            "tradeline": {
                "id": "019f1e57-9f62-7840-a544-0202a8583a7c",
                "merchant": "Water",
                "category": "UTILITY",
                "status": "OPEN",
                "isEligible": true,
                "paymentFrequency": "SEMIMONTHLY",
                "lastTransactionDate": "2026-07-01",
                "transactionCount": 6,
                "details": {},
                "createdAt": "2026-07-01T15:41:26.755542Z",
                "updatedAt": "2026-07-02T14:43:36.567762588Z",
                "reportedConsumerAccountNumber": "00000D7JXQIGF1K1U5995DPI08NWAY"
            }
        }
    }
}


Did this page help you?