john.doe, johndoe, j.doe, doe.john and so on - and the 99 names are spread evenly across the identities you gave.senders expects in POST /dfy/place-order, so you can pass it straight through, or edit any username first. Writing all 99 yourself works just as well - this endpoint only saves you the typing.curl --location 'https://api.plusvibe.ai/api/v1/dfy/generate-sender-identities' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"workspace_id": "65099a0dd96fae8ab61130c0",
"profiles": [
{
"first_name": "John",
"last_name": "Doe",
"middle_name": "Michael"
},
{
"first_name": "Ann",
"last_name": "Lee"
}
]
}'{
"senders": [
{
"first_name": "John",
"last_name": "Doe",
"prefixes": [
"john.doe",
"johndoe",
"john_doe",
"jdoe",
"j.doe",
"doe.john",
"…"
]
},
{
"first_name": "Ann",
"last_name": "Lee",
"prefixes": [
"ann.lee",
"annlee",
"ann_lee",
"alee",
"a.lee",
"lee.ann",
"…"
]
}
]
}