Cypress API test's. Не удается спарсить body GET'a

GET отдает body
}
“success”: true,
“result”: {
“profileId”: 1274148,
“balance”: 208261.0000,
“frozenAmount”: 201239.5600,
}
}

Мне нужно парсить данные body и вытащить именно balance в переменную. в CY Api еще не силен, на просторах не смог найти ответа, буду признателен за помощь :slight_smile:

Cypress is a TypeScript framework so the question here is not Cypress specific but TypeScript specific.
Please see how to parse JSON in the TypeScript

как-то так

const balance_value = cy.request({your request here})
  .its("body")
  .then((body) => {
    return body.balance;
  });

Cypress.env("balance", balance_value)

Доки:
Парсинг тела ответа: its | Cypress Documentation
Переменые: Cypress.env | Cypress Documentation