Go Lang- Business SDK Services

Introduction

Welcome to the user documentation for Card91BusinessSDK! This package provides a set of awesome utility functions that can simplify and enhance your Go Lang projects.

Prerequisites

Before you can run this project, you need to have the following prerequisites installed on your system:Go (version 1.18.*)

Installation

1-Unzip the package:

2-Copy the project folder and paste it under your current project where you want to use its functions:
3-Run the below command to sync the imports

4-Sync Go dependencies for your existing project using below command:

go mod tidy

5-Import the below path in the file from where you want to call the functions

"<your project name>/card91/issuance/handlers"
import (
	"<your project name>/card91/issuance/constants"
	"<your project name>/card91/issuance/entities"
	"<your project name>/card91/issuance/handlers"
	"<your project name>/card91/issuance/services"
)

6-Start calling the functions using handlers.<function_name>

Environment ENUM

Production Sandbox ="PROD_SANDBOX"
Production ="PROD"

API Documentation

This section provides details on the use of APIs, including sample requests and responses.

Usage :

The main function of this SDK allows you to retrieve card details by passing the card number and other details. This function returns the status code, header details, and the response data.

Use the method to integrate at places you want to use:

Method NameDescription
GetCardDetailsuse to fetch card details
GetHolderDetailsuse to fetch customer status
LoadMoneyToCarduse to load money to individual card
PrintCardDetailsuse for converting virtual card to physical card
MapCustomersuse to map insta kit to customer
ListAddressesuse to fetch customer addresses

Method 1: GetCardDetails

Description

This method allows you to retrieve card Details by its ID.

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • params (object, required): params object.
    • cardId (string, required): The ID of the card.

Sample Request to be passed as a json

params := entities.GetCardDetailsRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "PROD_SANDBOX",
		Param: entities.CardDetailsParams{
			CardId: "230530100608159ID1CARD5790474",
		},
	}
	resp, err := services.GetCardDetails(params)
	fmt.Println("resp:", (resp))

//Sample json below 
//{
   // "token": "XvJ1AFlJDltAth/FpLjp3rLrqK9tjaedBC+/JK4ezaU=",
   // "environment": "PROD_SANDBOX",
    //"param": {
    //    "cardId": "230530100608159ID1CARD5790474"
   // }
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Tue, 05 Sep 2023 11:49:17 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": "{"id":"230530100608159ID1CARD5790474","customerId":"220629141431170ID1CUSTID9321576","nameOnCard":"surya","cardProgramId":"230528190350397ID1CP9723194","cardProgramName":"test","orgId":"230526135544169ID1OID4070270","orgDisplayName":"SDK Business","orgName":"SDK Business","cardMode":"PHYSICAL_NAMED_CARD","instakit":false,"last4Digit":"7915","createdBy":"","modifiedBy":"","expiredBy":"","modifiedTime":"","createdTime":"","status":"ACTIVE","cardImage":"","wallets":null,"cardFlags":null,"issuerCode":"YES","network":"RUPAY","addresses":null}"
}

Method 2: GetHolderDetails

Description

This method allows you to retrieve holder details by its Mobile no.

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • params (object, required): params object.
    • mobileNo (string, required): Mobile no of the user.

Sample Request to be passed as a json

params1 := entities.GetHolderDetailsRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "PROD_SANDBOX",
		Param: entities.CardHolderParams{
			MobileNo: "917812381818",
		},
	}
	resps, err := services.GetHolderDetails(params1)
	fmt.Println("resp:", (resps))
//Sample json request
//{
   // "token": "XvJ1AFlJDltAth/FpLjp3rLrqK9tjaedBC+/JK4ezaU=",
   // "environment": "PROD_SANDBOX",
   // "param": {
     //   "mobileNo": "917812381818"
   // }
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Tue, 05 Sep 2023 12:04:36 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": "{"cardHolderId":"230719090829814ID1CUSTID8908902","name":"SDK Business","nameOnCard":"","email":"","mobile":"917812381818","status":"ACTIVE","createdAt":"","kycStatus":[],"cards":[{"cardId":"230719090829847ID1CARD4118406","status":"INACTIVE","last4CardDigits":"0563","cardMode":"PHYSICAL_NAMED_CARD","cardImageUrl":"","orgId":"230526135544169ID1OID4070270","createdAt":"2023-07-19T09:08:31.000+00:00"}],"addresses":null}"
}

Method 3: LoadMoneyToCard

Description

This method allows you to Add funds to card by card id

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • body (object, required): body object.
    • refId (string, required): The reference Id of the card.
    • cardId (string, required): The ID of the card.
    • wallets (array object, required): wallets array.
      • walletId (string, required): The wallet Id of the card.
      • amount (string, required): Amount to be added.

Sample Request to be passed as a json

params2 := entities.LoadMoneyToCardRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "PROD_SANDBOX",
		Body: entities.LoadMoneyToCardBody{
			RefID:  "Ref2875",
			CardId: "230907065654635ID1CARD4992328",
			Wallets: []entities.RequestWallets{{
				WalletId: "3eb460e3-d570-4803-b547-bb51d6724679",
				Amount:   "200",
			}},
		},
	}
	resps1, err := services.LoadMoneyToCard(params2)
	fmt.Println("resp:", (resps1))
//Sample JSON
//{
   // "token": "Xo/eh9CCjvs/9Y4mqbEZCkZ1XhTDElXUvajPV1AwAn8=",
   // "environment": "PROD_SANDBOX",
   // "body": {
      //  "refId": "Ref2875",
       // "cardId": "230907065654635ID1CARD4992328",
       // "wallets": [
         //   {
          //      "walletId": "3eb460e3-d570-4803-b547-bb51d6724679",
          //      "amount": "200"
          //  }
       // ]
   // }
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Thu, 07 Sep 2023 10:31:15 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": {
        "cardId": "230907065654635ID1CARD4992328",
        "failedWallets": 0,
        "refId": "Ref2875",
        "successfulWallets": 1,
        "wallets": [
            {
                "amount": "200",
                "balance": "",
                "walletId": "3eb460e3-d570-4803-b547-bb51d6724679"
            }
        ]
    }
}

Method 4: PrintCardDetails

Description

This method allows you to update card Details by its ID.

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • body (object, required): body object.
    • cardId (string, required): The ID of the card.
    • nameOnCard (string, required): Card name.
    • addressId (int, required): Address Id.

Sample Request to be passed as a json

params3 := entities.PrintCardDetailsRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "STAGE_SANDBOX",
		Body: entities.PrintCardDetailsBody{CardId: "230530100608159ID1CARD5790474",
			NameOnCard: "surya",
			AddressId:  3123,
		},
	}
	resps2, err := services.PrintCardDetails(params3)
	fmt.Println("resp:", (resps2))

//Sample JSON
//{
   // "token": "n7ordbBgKIIodm8065Y/cdkGGBRSisHJRTQbEqRV+7g=",
    //"environment": "PROD_SANDBOX",
   // "body": {
     //   "cardId": "230530100608159ID1CARD5790474",
      //  "nameOnCard": "surya",
      //  "addressId": 
   // }
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Wed, 06 Sep 2023 08:29:21 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": "{}"
}

Method 5: MapCustomers

Description

This method allows you to map customers to a card .

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • body (object, required): body object.
    • kitNumber (string, required): Kit Number.
    • mobile (string, required): Mobile number.
    • orgId (string, required): Organisation id.
    • cardProgramId (string, required): Card Program Id.

Sample Request to be passed as a json

params4 := entities.MapCustomerRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "PROD_SANDBOX",
		Body: entities.MapCustomersBody{
			KitNumber: "230000070080",
			Mobile: "917812381818",
			OrgId: "230526135544169ID1OID4070270",
			CardProgramId: "230528190350397ID1CP9723194",
		},
	}
	resps3, err := services.MapCustomers(params4)
	fmt.Println("resp:", (resps3))

//Sample JSON
//{
   // "token": "n7ordbBgKIIodm8065Y/cdkGGBRSisHJRTQbEqRV+7g=",
   // "environment": "PROD_SANDBOX",
   // "param": {},
   // "body": {
       // "kitNumber": "230000070080",
       // "mobile": "917812381818",
       // "orgId": "230526135544169ID1OID4070270",
       // "cardProgramId": "230528190350397ID1CP9723194"
    //}
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Tue, 05 Sep 2023 11:49:17 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": "{"id":"230530100608159ID1CARD5790474","customerId":"220629141431170ID1CUSTID9321576","nameOnCard":"surya","cardProgramId":"230528190350397ID1CP9723194","cardProgramName":"test","orgId":"230526135544169ID1OID4070270","orgDisplayName":"SDK Business","orgName":"SDK Business","cardMode":"PHYSICAL_NAMED_CARD","instakit":false,"last4Digit":"7915","createdBy":"","modifiedBy":"","expiredBy":"","modifiedTime":"","createdTime":"","status":"ACTIVE","cardImage":"","wallets":null,"cardFlags":null,"issuerCode":"YES","network":"RUPAY","addresses":null}"
}

Method 6: ListAddresses

Description

This method allows you to list addresses by customer id.

Request params to be passed in the body to call this method

  • Request Body:
    • token (string, required): Token needed for authorization.
    • environment (string, required): The Name of the Environment.
    • params (object, required): param object.
    • customerId (string, required): Customer ID.

Sample Request to be passed as a json

params5 := entities.ListAddressesRequest{
		Token: "Yj50LPbgJwvYuSfCZjpFh3O+Z5QMeNpv16xk7rfFzBs=",
		Env:   "STAGE_SANDBOX",
		Param: entities.ListAddressesParams{
			CustomerId: "220629141431170ID1CUSTID9321576",
		},
	}
	resps4, err := services.ListAddresses(params5)
	fmt.Println("resp:", (resps4))

//Sample JSON
//{
 //   "token": "Xf5ddxwr46rIEBrGFOmFv8C9IjHu19csGI6V0HxBjTc=",
  //  "environment": "PROD_SANDBOX",
  //  "param": {
  //      "customerId": "220629141431170ID1CUSTID9321576"
  //  }
//}

Sample Response

{
    "status": 200,
    "header": [
        {
            "Cache-Control": [
                "no-cache, no-store, max-age=0, must-revalidate"
            ],
            "Content-Type": [
                "application/json"
            ],
            "Date": [
                "Wed, 06 Sep 2023 08:35:40 GMT"
            ],
            "Expires": [
                "0"
            ],
            "Pragma": [
                "no-cache"
            ],
            "Strict-Transport-Security": [
                "max-age=31536000 ; includeSubDomains"
            ],
            "Vary": [
                "Origin",
                "Access-Control-Request-Method",
                "Access-Control-Request-Headers"
            ],
            "X-Content-Type-Options": [
                "nosniff"
            ],
            "X-Frame-Options": [
                "DENY"
            ],
            "X-Xss-Protection": [
                "1; mode=block"
            ]
        }
    ],
    "data": "{"addresses":[{"createdTime":"2022-06-29T14:14:31.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":null,"modifiedBy":null,"id":8313,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"PENDING","address1":"wrwer","address2":"wer","landmark":"wer","city":"bangalore","countryISOCode":"IND","pinCode":"560103","state":"karnataka","latitude":0.0,"longitude":0.0},{"createdTime":"2022-07-01T05:50:06.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":null,"modifiedBy":null,"id":8416,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"PENDING","address1":"addressLine1 is mandatory","address2":"Street / Area","landmark":"Flat","city":"bangalore","countryISOCode":"IND","pinCode":"614804","state":"KA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-05-09T11:07:30.000+0000","createdBy":"221129084538831ID1UID7577402","modifiedTime":null,"modifiedBy":null,"id":19461,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"PENDING","address1":"4444","address2":"","landmark":"","city":"banglore","countryISOCode":"IND","pinCode":"897876","state":"karnataka","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-01T10:46:05.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-01T10:46:05.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21130,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-01T13:36:10.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-01T13:36:10.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21131,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-03T14:38:54.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-03T14:38:54.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21146,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-03T14:44:59.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-03T14:44:59.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21147,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-04T07:34:55.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-04T07:34:55.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21148,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-04T08:34:11.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-04T08:34:11.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21149,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-06T13:32:16.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-06T13:32:16.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21151,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-06T13:48:47.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-06T13:48:47.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21152,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-06T14:04:18.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-06T14:04:18.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21153,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-07T07:03:28.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-07T07:03:28.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21157,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-07T07:24:44.000+0000","createdBy":"220527121332484ID1UID2364006","modifiedTime":"2023-08-07T07:24:44.000+0000","modifiedBy":"220527121332484ID1UID2364006","id":21158,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-09T10:22:33.000+0000","createdBy":"220527121332484ID1UID2364006","modifiedTime":"2023-08-09T10:22:33.000+0000","modifiedBy":"220527121332484ID1UID2364006","id":21190,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-10T07:01:26.000+0000","createdBy":"220527121332484ID1UID2364006","modifiedTime":"2023-08-10T07:01:26.000+0000","modifiedBy":"220527121332484ID1UID2364006","id":21203,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-16T05:51:25.000+0000","createdBy":"220527121332484ID1UID2364006","modifiedTime":"2023-08-16T05:51:25.000+0000","modifiedBy":"220527121332484ID1UID2364006","id":21273,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-16T18:33:07.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-16T18:33:07.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21296,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-17T02:41:55.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-17T02:41:55.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21297,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-17T02:43:20.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-17T02:43:20.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21298,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-18T10:18:06.000+0000","createdBy":"221129084538831ID1UID7577402","modifiedTime":null,"modifiedBy":null,"id":21319,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"PENDING","address1":"444","address2":"","landmark":"","city":"Banglore","countryISOCode":"IND","pinCode":"456738","state":"Karnataka","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-18T13:36:58.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-08-18T13:36:58.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21326,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Chennai","countryISOCode":"IND","pinCode":"560102","state":"TamilNadu","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-24T06:29:45.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-24T06:29:45.000+0000","modifiedBy":"20220119MPADMIN001","id":21420,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T06:59:06.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T06:59:06.000+0000","modifiedBy":"20220119MPADMIN001","id":21490,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:01:05.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:01:05.000+0000","modifiedBy":"20220119MPADMIN001","id":21491,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:04:19.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:04:19.000+0000","modifiedBy":"20220119MPADMIN001","id":21492,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:18:32.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:18:32.000+0000","modifiedBy":"20220119MPADMIN001","id":21497,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:23:27.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:23:27.000+0000","modifiedBy":"20220119MPADMIN001","id":21499,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:23:56.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:23:56.000+0000","modifiedBy":"20220119MPADMIN001","id":21500,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:24:41.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:24:41.000+0000","modifiedBy":"20220119MPADMIN001","id":21501,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:25:19.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:25:19.000+0000","modifiedBy":"20220119MPADMIN001","id":21502,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:25:55.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:25:55.000+0000","modifiedBy":"20220119MPADMIN001","id":21503,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:26:27.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:26:27.000+0000","modifiedBy":"20220119MPADMIN001","id":21504,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T07:27:34.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T07:27:34.000+0000","modifiedBy":"20220119MPADMIN001","id":21505,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-08-28T10:31:23.000+0000","createdBy":"20220119MPADMIN001","modifiedTime":"2023-08-28T10:31:23.000+0000","modifiedBy":"20220119MPADMIN001","id":21515,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0},{"createdTime":"2023-09-04T10:52:59.000+0000","createdBy":"230714102428729ID1UID0083499","modifiedTime":"2023-09-04T10:52:59.000+0000","modifiedBy":"230714102428729ID1UID0083499","id":21689,"entityId":"220629141431170ID1CUSTID9321576","entityType":"CUST","addressType":"DELIVERY_ADDRESS","status":"ACTIVE","address1":"1142,card91 6th main road, sector 7","address2":"Hsr layout","landmark":null,"city":"Bangalore","countryISOCode":"IND","pinCode":"560102","state":"KARNATAKA","latitude":0.0,"longitude":0.0}]}"
}