Hello,
This afternoon, I wasn't able to create a New ATM Card even when I used the same customerId for the checking account and the ATM card:(Retail Banking USA ---->Retail Core US Cards (v1)----> create a New ATM Card )
with the following body parameters:
body={
"customerId": "20546457-187c-33d5-aea8-6538403e47cc","accountId": "8345099355A11","atmAccountType": "A11"}.
which corresponds to the following format:
{
"customerId": "string. Tokenized Customer Id",
"accountId": "string. Tokenized Deposit Account Number and Account Type",
"atmAccountType": "string. ATM Account Type of the Card"
}
when I tried to do it, I got the following response:
Could not access protected resource. Server returned http code: 400
======================================================================
Actually,
I created a new customer/member (Retail Banking USA ---->Retail Core US Customers (v1)---->create a new customer/member)
with the followwing body parameters:
body={"lastName": "SmithDEF","firstName": "JohnDEF","middleName": "Van","gender": "Male","taxId": "123456789","taxIdType": "SSN","customerCategoryId": "210","birthDate": "1984-01-15","addresses": [{"addressLine1": "123 Main St.","addressLine2": "","city": "Austin","state": "TX","zipCode": "78721","addressTypeId": "1"}],"phones": [{"number": "4071234567","type": "primary"}],"emails": [{"email": "johndoe@test.com","type": "primary"}],"identifications": [{"idType": "Driver's License","idValue": "F253-876-23-1782791","issueDate": "2017-01-05","expiryDate": "2017-01-05","issueState": "FL"}]}
the customer/member was created with the following parameters:
{
"customerId":"20546457-187c-33d5-aea8-6538403e47cc"}
__________________________________________________________________________________________________________________________
When I executed the following request: Retail Banking USA ---->Retail Core US Accounts (v1), I got as result:
List of ATM Account Types;
I got the following response:
[{"description":"ATM Card 16","atmAccountType":"A11"},{"description":"Instant Issue ATM Cards","atmAccountType":"A22"}]
__________________________________________________________________________________________________________________________
I also created a new checking account (Retail Banking USA ---->Retail Core US Accounts (v1)----> create a New checking account )
with the followwing body parameters:
body={
"customerId": "20546457-187c-33d5-aea8-6538403e47cc","depositProductCode": "105","nickname": "brand new saving account"}
The checking account was created with the following parameters:
#content:{"accountId":"8ca6be15-6421-33a6-84fe-d7c83abf3e9b","accountNumber":"8345099355"}
# accountId = 8ca6be15-6421-33a6-84fe-d7c83abf3e9b
# accountNumber = 8345099355
What can I do?