SimpliFi
HomeContact Us
HomeContact Us
  1. User
  • Introduction
  • SimpliFi Architecture
  • Webhooks
  • Auth
    • Login to generate JWT token
      POST
  • Card Program
    • Create Card Program
      POST
    • Get Card Program
      GET
    • Change Card Program Status
      PATCH
    • Link Funding Source to Card Program
      POST
    • Get Balance of Funding Source
      GET
    • Transfer funds from one Card Program to other
      POST
    • Raise Funding Document Upload
      POST
    • Raise Funding
      POST
    • Funding Source Statement
      GET
  • Funding Source
    • Create Rule Group on Funding Account
      POST
    • Update Rule Group on Funding Account
      PUT
    • Delete Rule Group on Funding Account
      DELETE
    • Get Rule Groups on Funding Account
      GET
    • Appply Rule Group on Funding Account
      POST
    • Remove Rule Group on Funding Account
      DELETE
  • Card
    • List all Cards
    • Create a Card
    • Get Card Details
    • Retrieve Balance on the Card
    • Activate a Card
    • Manage Card Status
    • Load a Card
    • Unload a Card
    • Renewal of the Card
    • Request a Physical Card
    • Get Card Statement
    • Get Rule Groups on Card
    • Create Rule Group on Card
    • Update Rule Group on Card
    • Delete Rule Group on Card
    • Apply Rule Group on Card
    • Remove Rule Group on Card
  • User
    • List all Users
      GET
    • Create a User
      POST
    • Upload Document
      POST
    • Retrieve a User
      GET
    • Update a User
      PUT
    • Delete a User
      DELETE
    • Add update address of user
      POST
  • Transaction
    • List All Transactions
  • Fee
    • Add fee configuration
    • Fetch fee config
    • Change the status of fee config
    • Add Fee event against card uuid in queue
    • Apply fee against card uuid present in queue
  • Webhook
    • Get all events
    • Create a webhook
    • Update a Webhook
    • Delete a Webhook
    • Updates the status of Webhook
    • Card Activation webhook
    • Card Issuance webhook
    • Card PIN Setup webhook
    • Card Renewed webhook
    • Card Status Change webhook
    • Card Type Change webhook
    • Card Load webhook
    • Card Unload webhook
    • Card Unload webhook
    • User creation webhook
    • User updation webhook
    • User deletion webhook
    • Card Program Creation webhook
    • Funds transfer webhook
    • Raise funding webhook
    • Transaction webhook
    • Transaction Enrichment webhook
    • Fees apply webhook
    • Rule group creation webhook
    • Rule group updation webhook
    • Rule group deletion webhook
    • Wallet rule group creation webhook
    • Wallet rule group deletion webhook
    • Card rule group creation webhook
    • Card rule group deletion webhook
  • Schemas
    • Schemas
      • CardToHolderCreationWebhook
      • CardToHolderUpdationWebhook
      • CardToHolderDeletionWebhook
    • Response
      • EntityNotFoundError
    • InstrumentType
    • ErrorModel
    • UserRequestModel
    • AddressModel
    • ContactModel
    • UserDetailModel
    • AuthRequestModel
    • AuthResponseModel
    • UserModel
    • DocumentUploadModel
    • MerchantModel
    • FundingSourceResponseModel
    • RaiseFundingDocumentModel
    • FundingSourceRequestModel
    • CardConfigModel
    • CardPoi
    • CardProgramRequestModel
    • CardAmountModel
    • FeesApplicationCardRequest
    • FeeApplicationEventResponse
    • StatementResponse
    • RaiseFundingResponseModel
    • MerchantDetailModel
    • MerchantListModel
    • StatementResponseDetails
    • VelocityControlConfigModel
    • VelocityControlDetailConfigModel
    • TransactionResponse
    • RuleGroupResponseModel
    • RuleGroupModel
    • TransactionResponseDetails
    • RuleGroupTransactionRestrictions
    • TransactionRequestModel
    • RuleGroupMerchantRules
    • FileUploadModel
    • RuleGroupLoadRestrictions
    • DocumentModel
    • RuleGroupSpendRestrictions
    • CardStatusModel
    • CardRenewalModel
    • ApplyFeesOnCardRequest
    • FeesStatusUpdateModel
    • FeesSetupModel
    • CardProgramTransferFundsModel
    • RaiseFundingRequestModel
    • Webhook
    • AddressRequestModel
    • CardRequestModel
    • FeeConfigurationModel
    • CardResponseModel
    • CardStatementResponse
    • CardProgramStatusChangeRequestModel
    • WebhookEventType
    • AmountModel
    • CardProgramCreationWebhook
    • WebhookEventModel
    • WebhookRequestModel
    • WebhookResponseModel
    • CardActivationWebhook
    • FundingSourceBalanceModel
    • CompanyUuidParameter
    • CardIssuanceWebhook
    • RequestUuidParameter
    • CardPinSetupWebhook
    • UserUuidParameter
    • CardRenewedWebhook
    • CardUuidParameter
    • CardStatusChangeWebhook
    • MaskedPanParameter
    • CardProgramResponseModel
    • CardTypeChangeWebhook
    • CardStatusParameter
    • CardLoadWebhook
    • TransactionIdParameter
    • CardUnloadWebhook
    • TransactionUuidParameter
    • CardToCardTransferWebhook
    • TransactionTypeParameter
    • FundTransferWebhook
    • RaiseFundingWebhook
    • CardHolderCreationWebhook
    • TransactionWebhook
    • TransactionEnrichmentWebhook
    • CardHolderUpdationWebhook
    • CardHolderDeletionWebhook
    • FeesApplyWebhook
    • UserWebhook
    • RuleGroupCreationWebhook
    • RuleGroupUpdationWebhook
    • RuleGroupDeletionWebhook
    • WalletRuleGroupCreationWebhook
    • WalletRuleGroupDeletionWebhook
    • CardRuleGroupCreationWebhook
    • CardRuleGroupDeletionWebhook
  1. User

Add update address of user

POST
https://{{env}}-lb.simplifipay.com/v1/user/{uuid}/address/{type}
User
One can either add or update an address of the user. Address type can be either PRIMARY or DELIVERY

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Ok
Body

🟠400EntityNotFoundError
🟠401UnauthorizedError
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://uat-lb.simplifipay.com/v1/user//address/' \
--header 'requestUuid;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "streetAddress": "string",
    "address2": "string",
    "cityCode": "string",
    "stateCode": "string",
    "countryCode": "string",
    "postalCode": "string"
}'
Response Response Example
200 - Example 1
{
    "addressType": "PRIMARY",
    "streetAddress": "string",
    "address2": "string",
    "cityCode": "string",
    "stateCode": "string",
    "countryCode": "string",
    "postalCode": "string"
}
Modified at 2026-03-16 07:54:15
Previous
Delete a User
Next
Transaction
Built with