POST
/
api
/
partner
/
send_creation_email
curl --request POST \
  --url https://backend.identifai.net/api/partner/send_creation_email \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-Api-Key: <api-key>' \
  --form id=123
{
  "data": {
    "id": 222,
    "name": "User",
    "email": "user@mail.com",
    "email_verified_at": "2025-03-03T13:28:03.000000Z",
    "address": null,
    "zip": null,
    "city": null,
    "country": null,
    "phone": null,
    "contact": null,
    "vat": null,
    "created_at": "2025-03-03T13:28:03.000000Z",
    "updated_at": "2025-03-12T09:32:43.000000Z",
    "balance": 0,
    "heuristic": "AverageExcludeObsolete",
    "readonly": null,
    "pricing": {
      "id": 1,
      "name": "TestB",
      "sku": "testB"
    },
    "partner": {
      "id": 221,
      "name": "Partner",
      "email": "partner@gmail.com",
      "email_verified_at": "2025-03-03T11:22:49.000000Z",
      "address": null,
      "zip": null,
      "city": null,
      "country": null,
      "phone": null,
      "contact": null,
      "vat": null,
      "created_at": "2025-03-03T11:22:49.000000Z",
      "updated_at": "2025-03-03T13:27:06.000000Z",
      "balance": 0,
      "heuristic": "Average",
      "readonly": false,
      "pricing": {
        "id": 2,
        "name": "TestAC",
        "sku": "testAC"
      },
      "partner": null
    }
  }
}

Authorizations

X-Api-Key
string
header
required

Your API key.

Body

multipart/form-data

Response

200 - application/json
Email successfully sent to the specified user.

The response is of type object.