POST
/
customers
/
{customerID}
/
businesses
/
invite
curl --request POST \
  --url https://api.joinworth.com/case/api/v1/customers/{customerID}/businesses/invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "business": {
    "name": "invite test 1 using postman",
    "mobile": "+16078379283"
  },
  "applicants": [
    {
      "first_name": "Abc",
      "last_name": "Xyz",
      "email": "prasad.desai+b4@winjit.com",
      "mobile": "+16078379283"
    }
  ]
}'
{
  "status": "success",
  "message": "Business invited successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerID
string
required
Example:

"22f210e4-4455-4107-b132-97e8478546ea"

Body

application/json
business
object
required
Example:
{
  "name": "invite test 1 using postman",
  "mobile": "+16078379283"
}
applicants
object[]
required

Response

200
application/json; charset=utf-8
OK
status
string
required
message
string
required
data
object
required