Skip to main content
POST
/
api
/
company
/
payroll
/
quote
/
refresh
Refresh payroll quote
curl --request POST \
  --url https://api.sandbox.bitwage.com/api/company/payroll/quote/refresh \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "payroll_id": "<string>"
}
'
{
  "payroll_id": "<string>",
  "quote_id": "<string>",
  "valid_from": "2023-11-07T05:31:56Z",
  "valid_to": "2023-11-07T05:31:56Z",
  "rate": 123,
  "funding_currency": "<string>",
  "funding_amount": 123,
  "funding_details": {
    "address": "<string>",
    "network": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your access token as: Authorization: Basic <ACCESS_TOKEN>

Body

application/json
payroll_id
string
required

Response

200 - application/json

Quote refreshed.

payroll_id
string
quote_id
string
valid_from
string<date-time>
valid_to
string<date-time>
rate
number<double>
funding_currency
string
funding_amount
number<double>
funding_details
object