updateRecurringPayItem
curl --request PUT \
--url https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "updateRecurringPayItem",
"companyId": "336CB829-543B-451D-AAA2-18A1B03454F2",
"userId": "C8E5F6AB-4CB5-406C-B756-208B742F4281",
"type": "CN RPP",
"allocatedPercentage": 5
}
'import requests
url = "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem"
payload = {
"method": "updateRecurringPayItem",
"companyId": "336CB829-543B-451D-AAA2-18A1B03454F2",
"userId": "C8E5F6AB-4CB5-406C-B756-208B742F4281",
"type": "CN RPP",
"allocatedPercentage": 5
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
method: 'updateRecurringPayItem',
companyId: '336CB829-543B-451D-AAA2-18A1B03454F2',
userId: 'C8E5F6AB-4CB5-406C-B756-208B742F4281',
type: 'CN RPP',
allocatedPercentage: 5
})
};
fetch('https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'method' => 'updateRecurringPayItem',
'companyId' => '336CB829-543B-451D-AAA2-18A1B03454F2',
'userId' => 'C8E5F6AB-4CB5-406C-B756-208B742F4281',
'type' => 'CN RPP',
'allocatedPercentage' => 5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem"
payload := strings.NewReader("{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}"
response = http.request(request)
puts response.read_body{
"Status": "Success",
"Message": "Recurring pay item updated successfully."
}{
"error": {
"code": 400,
"message": "Invalid companyId"
}
}Admin Portal
updateRecurringPayItem
The updateRecurringPayItem API is used to make amount updates to an employee’s existing recurring payroll item.
What it does:
- Updates the
allocatedPercentageoramountPerPayPeriodfor an existing item - Can be used to switch between percentage and set dollar amount
Notes:
- A recurring pay item must already exist with the specified
type - Updates will reflect immediately in open pay periods but will not affect processing or processed pay periods
PUT
/
adminPortal
/
updateRecurringPayItem
updateRecurringPayItem
curl --request PUT \
--url https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "updateRecurringPayItem",
"companyId": "336CB829-543B-451D-AAA2-18A1B03454F2",
"userId": "C8E5F6AB-4CB5-406C-B756-208B742F4281",
"type": "CN RPP",
"allocatedPercentage": 5
}
'import requests
url = "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem"
payload = {
"method": "updateRecurringPayItem",
"companyId": "336CB829-543B-451D-AAA2-18A1B03454F2",
"userId": "C8E5F6AB-4CB5-406C-B756-208B742F4281",
"type": "CN RPP",
"allocatedPercentage": 5
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
method: 'updateRecurringPayItem',
companyId: '336CB829-543B-451D-AAA2-18A1B03454F2',
userId: 'C8E5F6AB-4CB5-406C-B756-208B742F4281',
type: 'CN RPP',
allocatedPercentage: 5
})
};
fetch('https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'method' => 'updateRecurringPayItem',
'companyId' => '336CB829-543B-451D-AAA2-18A1B03454F2',
'userId' => 'C8E5F6AB-4CB5-406C-B756-208B742F4281',
'type' => 'CN RPP',
'allocatedPercentage' => 5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem"
payload := strings.NewReader("{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/adminPortal/updateRecurringPayItem")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"method\": \"updateRecurringPayItem\",\n \"companyId\": \"336CB829-543B-451D-AAA2-18A1B03454F2\",\n \"userId\": \"C8E5F6AB-4CB5-406C-B756-208B742F4281\",\n \"type\": \"CN RPP\",\n \"allocatedPercentage\": 5\n}"
response = http.request(request)
puts response.read_body{
"Status": "Success",
"Message": "Recurring pay item updated successfully."
}{
"error": {
"code": 400,
"message": "Invalid companyId"
}
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
⌘I
