POST
/
api
/
partner
/
send_creation_email
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
id
integer
required

The id of the user for whom the email should be sent.

Response

200 - application/json

Email successfully sent to the specified user.

id
integer

Unique identifier of the user.

name
string

Full name of the user.

email
string<email>

Email address of the user.

email_verified_at
string<date-time>

Timestamp when the email was verified.

address
string | null

User's address.

zip
string | null

Postal code of the user.

city
string | null

City of the user.

country
string | null

Country of the user.

phone
string | null

Phone number of the user.

contact
string | null

Alternative contact information.

vat
string | null

VAT number of the user, if applicable.

created_at
string<date-time>

Creation timestamp of the user.

updated_at
string<date-time>

Last update timestamp of the user.

balance
number

The user credits balance.

heuristic
string

User's heuristic setting.

readonly
boolean

User can only view classification results.

pricing
object

User pricing plan.

partner
object

User partner.