Updates the employee's bank account with the specified ID.

Request

PUT https://apimy.yourpayroll.io/api/v2/ess/{employeeId}/bankaccounts/{id}

Path parameters

Parameter name Value Description Additional
id int32 Required
employeeId string Required

Request body

The request body takes a complete BankAccountModel resource, containing the following writable properties:

{
    "accountName": "string",
    "accountNumber": "string",
    "allocateBalance": "boolean",
    "allocatedPercentage": "double",
    "bsb": "string",
    "canBeDeleted": "boolean",
    "employeeId": "int32",
    "externalReferenceId": "string",
    "fixedAmount": "double",
    "id": "int32",
    "isEmployeeEditable": "boolean"
}

Properties

Name Type Description
accountName string String
accountNumber string String
allocateBalance boolean Boolean
allocatedPercentage double Nullable
bsb string String
canBeDeleted boolean Boolean
employeeId int32 Int32
externalReferenceId string String
fixedAmount double Nullable
id int32 Int32
isEmployeeEditable boolean Boolean

Response

The following HTTP status codes may be returned, optionally with a response resource.

Status code Description Resource
200 OK

OK

SaveBankAccountResponseModel