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

Updates the status of Webhook

PUT
https://{{env}}-lb.simplifipay.com/webhook/{uuid}/status
Webhook
This endpoint allows you to update the status of an existing webhook

Request

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

Query Params

Header Params

Responses

🟢200OK
application/json
OK
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PUT 'https://uat-lb.simplifipay.com/webhook//status?enable' \
--header 'requestUuid;' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "uuid": "84503d40-93b1-4f1d-b265-41553528a028",
    "name": "Card Status Change",
    "eventType": "CARD_ACTIVATION",
    "status": "ENABLED",
    "endpointUrl": "https://webhook.simplifipay.com",
    "creationDate": "2025-02-28 13:31:00",
    "lastModified": "2025-02-28 13:31:00"
}
Modified at 2025-08-28 04:34:27
Previous
Delete a Webhook
Next
Card Activation webhook
Built with