Antcrm - development
    Antcrm - development
    • Health
      GET
    • Create Leads
      POST
    • List Org Users
      GET
    • Delete Leads
      DELETE
    • List Leads
      GET

      Create Leads

      POST
      api.dev.workaxis.in/api/v1/leads/

      Request

      Authorization
      Send your HTTP requests with an
      Authorization
      header that contains the word Basic followed by a space and a base64-encoded string username:password
      Example:
      Authorization: Basic *****************
      Body Params application/jsonRequired

      Examples

      Responses

      🟢200Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'api.dev.workaxis.in/api/v1/leads/' \
      --header 'Authorization: Basic <encoded-value>' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "is_staff_created": true,
          "has_appointment": false,
          "client": {
              "is_converted": true,
              "timezone": "Asia/Calcutta",
              "first_name": "Padma",
              "last_name": "Dev",
              "mobile": "",
              "tags": []
          }
      }'
      Response Response Example
      {}
      Previous
      Health
      Next
      List Org Users
      Built with