# Create a sender profile Create a new sender profile with a name and optional label. Endpoint: POST /flows/api/sender-profiles Version: 2.0.0 Security: bearerAuth ## Request fields (application/json): - `first_name` (string, required) Example: "John" - `last_name` (string, required) Example: "Doe" - `label` (string) Example: "Sales Team - US" - `assignee_user_id` (integer) ## Response 201 fields (application/json): - `uuid` (string) Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890" - `team_id` (integer) - `linkedin_server_id` (integer,null) - `linkedin_browser_uuid` (string,null) - `linkedin_account_uuid` (string,null) - `mailbox_uuid` (string,null) - `assignee_user_id` (integer,null) - `first_name` (string) Example: "John" - `last_name` (string) Example: "Doe" - `label` (string,null) Example: "Sales Team - US" - `status` (string) Example: "enabled" - `user_id` (integer) - `created_at` (string) - `updated_at` (string)