action slideroom_applicant_post_attributes_v2 { label: "Updates the custom attributes for an applicant." description: "This method only adds or updates attributes. Null values will be updated as nulls, but not deleted. API Import is available in the Advanced Plan." provider: slideroom method: POST path: "/api/v2/applicant/attributes" encoding: json input: { type: "object" properties: { commonAppYear: { type: "string" } email: { type: "string" } pool: { type: "string" } } required: ["email"] additionalProperties: false } output: { type: "object" additionalProperties: true } }