Items for Attention
An Item for Attention (IFA) may be triggered on an account for various reason. These IFAS restrict users from performing certain actions until they are reolved.
This guide details each IFA and how to resolve it using the GSCS APIs.
Items for Attention (IFA) - Workflow
Step 1. Get all Items for Attention
Use this Endpoint to get a list of all Items for Attention for accounts managed by an advisor.
Endpoint: List IFAs
Example: GET /api/v2/ifas
Results can be filtered by a specific Item for Attention Status
Step 2. Get Item for Attention Details
Use this Endpoint to get details about a specific Item for Attention
Endpoint: Get an IFA
Example: GET /api/v2/ifas/{ifaId}
Step 3. Action the Item for Attention
Use the information below on the IFA types to determine what action to take
IFA Descriptions
Each Item for Attention can be identified by the itemForAttentionType
returned in the GET IFA endpoint. Below are the different IFAs that can be triggered on an account.
Account & Withholding Agreement
To acknowledge you are the owner of a new Individual account OR To acknowledge you are a co-owner of a new Joint account
-
itemForAttentionType: AA
-
Action Needed: Acknowledgement
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Transfer Account Agreement
This IFA will trigger when the advisor initiates an account transfer with the sign later option, then this IFA is triggered
The Advisee will receive the IFA and must submit their e-signature.
-
itemForAttentionType: TA
-
Action Needed: e-signature
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
Margin Feature Agreement/ Margin Borrowing Authorization
Advisee must approve an IFA with an e-signature for Margin to enabled on their account
-
itemForAttentionType: MA
-
Action Needed: e-signature
-
Endpoint: Updates an IFA
Confirm Address
To confirm we have the correct address on record.
This will automatically trigger every 6 months.
Fields in the parameterMap part of the request body are optional
-
itemForAttentionType: CA
-
Action Needed: Validate address
-
Endpoint: Updates an IFA
-
Example Request:
PUT api/v2/ifas/4395513238358029097
{
"action": "A",
"parameterMap": {
"emailAddress1": "John.Smith@AgTesting.com",
"workPhoneNumber": "1615606051",
"homePhoneNumber": "3833848033",
"homeAddress": {
"line1": "50 Smith Store Ave",
"line2": "Apt. 6",
"country": "US",
"state": "MA",
"zipcode": "21250",
"city": "Boston"
},
"emailAddress2": "test2@test.com"
}
}
Banklink Owner Verification
Verify bank link owner by submitting the owners e-signature.
-
itemForAttentionType: BV
-
Action Needed: e-signature
-
Endpoint: Verify bank link owner
-
Example:
PUT /api/v2/ifas/bank-link-owner-verifications/{accountNumber}/{bankLinkId}
PUT api/v2/ifas/bank-link-owner-verifications/RM9769200R/288230378190795265
{
"loginId": "sallysmith123",
"clientAgreement": "true"
}
Bank link Micro Deposit Entry
Verify microdeposit amounts for bank link verification.
-
itemForAttentionType: MD
-
Action Needed: Submit small deposit amounts
-
Endpoint: Micro Deposit Verify
Example: PUT /api/v2/ifas/microdeposit-verifications/{accountNumber}/{bankLinkId}
Third Party ACH Withdrawal Verification
For some 3rd Party Withdrawals (3A, 3W, 3I), the IFA is created after a banklink has been created AND a transaction has been submitted using this new banklink. The IFA will approve both the banklink and the transaction, but any future transactions using this banklink (assuming it’s not a one-time use banklink) will not create an IFA since the banklink has already been approved.
-
itemForAttentionType: 3A
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Third Party Wire Withdrawal Verification
For some 3rd Party Withdrawals (3A, 3W, 3I), the IFA is created after a banklink has been created AND a transaction has been submitted using this new banklink. The IFA will approve both the banklink and the transaction, but any future transactions using this banklink (assuming it’s not a one-time use banklink) will not create an IFA since the banklink has already been approved.
-
itemForAttentionType: 3W
-
Action Needed: Acknowledgment
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Third Party International Wire Withdrawal Verification
For some 3rd Party Withdrawals (3A, 3W, 3I), the IFA is created after a banklink has been created AND a transaction has been submitted using this new banklink. The IFA will approve both the banklink and the transaction, but any future transactions using this banklink (assuming it’s not a one-time use banklink) will not create an IFA since the banklink has already been approved.
-
itemForAttentionType: 3I
-
Action Needed: Acknowledgment
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Third Party Check Withdrawal Verification.
To approve and proceed with a 3rd party check withdrawal
-
itemForAttentionType: 3C
-
Action Needed: Acknowledgment
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Third Party Internal Transfer Verification
To approve and proceed with a 3rd party internal transfer.
-
itemForAttentionType: 3T
-
Action Needed: Acknowledgment
-
Endpoint: Updates an IFA
-
Example:
PUT /api/v2/ifas/{ifaId}
{
"action": "A"
}
Was this page useful?
Give feedback to help us improve developer.gs.com and serve you better.