Я звоню почтальону в конечную точку и хочу сохранить в переменной только число из поля моего тела ответа.
POST {{baseURL}}/{{version}}/{{customersEndpoint}}
response:
{
"firstName": "te",
"lastName": "test",
"customerUrl": "/api/v1/customers/172"
}
var response = JSON.parse(responseBody)
console.log(response)
console.log(response.customerUrl)
Я хочу сохранить только в переменнойномер 172.
var customerID = response.customerUrl(something) ???
Спасибо!