API
HomeEasytransac
HomeEasytransac
  1. API - User
  • Start
    • API Domain Usage
    • Get an API key
    • Communication
  • Documentation
    • Errors
      • ApiError codes
    • Webhooks
      • PUSH Method
      • PULL Method
  • V2
    • Overview
    • Authentication
      • JWT access token - Generate
        POST
    • Endpoints
      • Open Banking
        • Open Banking - Initialize
      • SDD
        • SDD - Mandate - Create
        • SDD - Mandate - Debit
        • SDD - Mandate - Get status
      • Transaction
        • Transaction - Get status
  • V1
    • Documentation
      • Signature
    • Authentication
      • Overview
      • Security
      • PSD2 and 3DSecure
    • API - Payment
      • Recurring payments
      • Card payment
      • 1-click payment
      • SEPA Direct Debit
      • Transfer (Open Banking)
      • Payment page
      • Cancel a payment page
      • Resend the payment page
      • P2P Transfert
      • Update a subscription
      • Status
      • Refund
      • Capture
      • Cancellation
      • List of cards
      • List of IBANs
      • History
      • Payment requests
      • Card information
    • API - User
      • Add a merchant
        POST
      • Update a merchant
        POST
      • Search for a merchant
        POST
      • List of movements
        POST
      • Make a payout
        POST
      • List all payouts
        POST
      • Add a logo
        POST
      • Get the activity
        POST
      • Update activity
        POST
    • API - Document
      • Add a document
      • Get a document
      • List documents
  1. API - User

Update activity

Sandbox
https://api.sandbox.easytransac.com/v2
Sandbox
https://api.sandbox.easytransac.com/v2
POST
/api/user/activity/update
API - User
Allows you to describe in a few questions the activity carried out by a merchant and verify that it is not prohibited.
If you do not fill in Email or Id, your own activity will be updated.

Request

Body Params application/x-www-form-urlencoded
ActivityDescription
string 
required
Full description of the activity
ExpectedVolumes
enum<string> 
required
Estimated transaction volume per month
Allowed values:
0-10001000-50005000-1000010000-5000050000-100000+100000
NotProhibited
enum<string> 
required
Specify if the activity is not prohibited by Easytransac, "yes" if permitted. The list is available at www.easytransac.com/fr/activites-prohibees
Allowed values:
yesno
WebsitesUrl
enum<string> 
required
The merchant website address or "no" if not applicable
Allowed values:
URL complèteno
Email
string 
optional
Easytransac merchant email address
<= 128 characters
Id
number 
optional
Easytransac merchant identifier
Signature
string 
required
Signature to verify the integrity of the data sent

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.sandbox.easytransac.com/v2/api/user/activity/update' \
--data-urlencode 'ActivityDescription=' \
--data-urlencode 'ExpectedVolumes=' \
--data-urlencode 'NotProhibited=' \
--data-urlencode 'WebsitesUrl=' \
--data-urlencode 'Signature='

Responses

🟢200Response
application/json
Body
Code
integer 
optional
Example:
0
Signature
string 
optional
Example:
1f51786246a940677afe71f6968972fd46500bd1
Result
object 
optional
ActivityDescription
object 
optional
ExpectedVolumes
object 
optional
Example
{
  "Code": 0,
  "Signature": "1f51786246a940677afe71f6968972fd46500bd1",
  "Result": {
    "ActivityDescription": {
      "LastUpdate": "2018-01-26 14:30:52",
      "Response": "Vendeur à domicile de produits bien être",
      "Status": "pending",
      "Comment": null
    },
    "ExpectedVolumes": {
      "LastUpdate": "2018-01-26 14:30:55",
      "Response": "0-1000",
      "Status": "pending",
      "Comment": null
    }
  }
}
Previous
Get the activity
Next
Add a document
Built with