Create private person

Use case

Here, you can learn how to create a record of a person (record of your customer) in Tuum. In this example, we will showcase the creation of a record of a private person with the following data.

Use case data
API parameters with values

Private person

The person's name is Trevor Tuum

The person's United Kingdom identification number is QQ123456B

The person's registration address is United Kingdom 85 Park end St Broomhill NE65 0YW

circle-info

The person record in the example below is created with a minimum data set. In the same way, you can create a person with a richer data set.

Sample API call

To create a record of a person, make the following API call.

https://person-api.sandbox.tuumplatform.com/api/v2/persons

circle-info

Learn more about the create personarrow-up-right endpoint in the Tuum developer portal.

Sample request

Below is an example request body of the API call for creating a private person.

{
    "personTypeCode": "P",
    "surname": "Tuum",
    "givenName": "Trevor",
    "identificationNumbers": [
        {
            "idNumber": "QQ123456B",
            "idCountryCode": "GB",
            "primary": true
        }
    ],
    "addresses": [
        {
            "addressTypeCode": "R",
            "countryCode": "GB",
            "cityCounty": "Broomhill",
            "street1": "85 Park End St",
            "zip": "NE65 0YW"
        }
    ]
}
circle-exclamation

Sample response

Below you find an example response body to the API call above.

chevron-rightResponsehashtag

Result

A new private person ID-3726 is created and activated. The new person record is available for further actions.

circle-info

You will need the parameter value of personId (ID-3726 in the current example) from the response to perform further actions with that person record.

Last updated

Was this helpful?