action ato_post_individuals { label: "Create an individual" description: "Create an individual\n" provider: ato method: POST path: "/individuals" encoding: json output: { type: "object" description: "The Individual resource." required: ["dateOfBirth", "placeOfBirth"] properties: { addresses: { type: "array" items: { type: "object" } } dateOfBirth: { type: "string" format: "date" description: "The individual's date of birth, for example, `1979-01-13` (in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format)." } electronicAddresses: { type: "array" items: { type: "object" description: "The Electronic Address resource." properties: { areaCode: { type: "string" description: "The area code, for example, \"02\"." } countryPrefix: { type: "string" description: "The country prefix, for example, \"61\"." } electronicAddressType: { type: "string" description: "The electronic address type." enum: ["Email", "Fax", "Landline", "Mobile", "Website"] } email: { type: "string" description: "The email address, for example, \"robert.ferguson@ato.gov.au\"." } extension: { type: "string" description: "The extension number, for example, \"4453\"." } fromDate: { type: "string" format: "date-time" description: "The date and time the resource became active in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } id: { description: "The resource's unique identifier." type: "object" } number: { type: "string" description: "The number, for example, \"62164453\"." } toDate: { type: "string" format: "date-time" description: "The date and time the resource became inactive in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } url: { type: "string" description: "The website address, for example, \"https://ato.gov.au\"." } } } } fromDate: { type: "string" format: "date-time" description: "The date and time the resource became active in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } gender: { type: "string" description: "The individual's gender." enum: ["Female", "Male", "Not Applicable", "Not Known"] } id: { description: "The party's unique identifier." type: "object" } names: { type: "array" items: { type: "object" description: "The Individual Name resource." properties: { direction: { type: "string" description: "The direction used to render the individual's name." enum: ["left-to-right", "right-to-left"] } familyName: { type: "string" description: "The individual's family name." } formalSalutation: { type: "string" description: "The individual's formal salutation, for example, \"Mr William Smith\"." } fromDate: { type: "string" format: "date-time" description: "The date and time the resource became active in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } givenName: { type: "string" description: "The individual's given name." } id: { description: "The resource's unique identifier." type: "object" } informalSalutation: { type: "string" description: "The individual's informal salutation, for example, \"Bill\"." } middleName: { type: "string" description: "The individual's middle name." } namePrefix: { type: "string" description: "The individual's name prefix." enum: ["Mr", "Ms"] } nameSuffix: { type: "string" description: "The individual's name suffix, for example, \"Jr\" or \"Sr\"." } nameType: { type: "string" description: "The name type." enum: ["Alias", "Principal Name"] } toDate: { type: "string" format: "date-time" description: "The date and time the resource became inactive in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } } } } placeOfBirth: { type: "string" description: "The individual's place of birth, for example, `Tamworth`." } toDate: { type: "string" format: "date-time" description: "The date and time the resource became inactive in the format defined by [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)." } } } }