Update an employment
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body
-
status string
The employment status for the given employment. Available values: employed, self_employed, student, unemployed, house_person, retired and other
-
occupation_code string
The Origo occupation code for the given employment. You can use the /api/v1/static/occupations endpoint to get a list of occupations.
-
job_title string
Job title if no suitable occupation code is found.
-
employer string
The name of the employer/business.
-
started_at date
An optional start date of the employment.
-
ended_at date
An optional end date of the employment.
-
is_business_owner boolean
Denotes if the employment owner is the business owner.
-
percentage_of_business_owned integer
The percentage of the business owned.
-
address array[string]
The address of the employer.
-
email_address string
The email address of the employer. Will be added as a contact detail.
-
phone_number string
The phone number of the employer. In E.164 format. Will be added as a contact detail.
-
last_salary_increase date
The date of the last salary increase.
-
business_name string
The name of the business.
-
business_year_end string
The year end of the business.
-
business_value integer
The value of the business in pennies.
-
directors string
The directors of the business.
-
profit integer
The profit of the business in pennies.
-
turnover_history array[string]
The turnover history of the business for each year. All values must be in pennies as integers.
-
accountant_company_name string
The name of the accountant company.
-
accountant_email string
The email of the accountant.
-
accountant_telephone_number string
The telephone number of the accountant.
-
accountant_address string
The address of the accountant.
curl \
-X PUT https://api.plannrcrm.com/api/v1/client/client_uuid/employment/uuid \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"status":"employed","occupation_code":"FAC02774","job_title":"Senior Developer","employer":"Plannr Technologies Ltd","started_at":"2019-11-20T13:24:00+00:00","ended_at":"2020-11-20T13:24:00+00:00","is_business_owner":true,"percentage_of_business_owned":50,"address":[{"county":{"type":"string","example":"Hampshire","required":false,"description":"County"},"country":{"type":"string","example":"United Kingdom","required":false,"description":"Country"},"postcode":{"type":"string","example":"PO7 7YH","required":false,"description":"Postcode"},"address_1":{"type":"string","example":"Work Address","required":false,"description":"Name of the address"},"address_2":{"type":"string","example":"Suite E, 5 The Briars","required":false,"description":"Second line of the address"},"address_3":{"type":"string","example":"Waterberry Drive","required":false,"description":"Third line of the address"},"address_4":{"type":"string","example":"The Innovative Centre","required":false,"description":"Fourth line of the address"},"town_city":{"type":"string","example":"Waterlooville","required":false,"description":"Town/City"}}],"email_address":"gareth@plannrcrm.com","phone_number":"+443330509960","shared_owner_uuid":"617fa1d1-f2a6-4e1f-989e-32a0ccd56443","last_salary_increase":"2019-01-01","business_name":"My Business","business_year_end":"2019-01-01","business_value":5000000,"directors":"John Doe","shareholding_in_business":50,"profit":5000000,"turnover_history":[{"year":2022,"value":5000000},{"year":2021,"value":4500000}],"accountant_company_name":"My Company","accountant_email":"accountant@email.com","accountant_telephone_number":"0123456789","accountant_address":"1 My Street, My Town, My Country"}'
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"status": "employed",
"occupation_code": "FAC02774",
"job_title": "Senior Developer",
"employer": "Plannr Technologies Ltd",
"started_at": "2019-11-20T13:24:00+00:00",
"ended_at": "2020-11-20T13:24:00+00:00",
"is_business_owner": true,
"percentage_of_business_owned": 50,
"address": [
{
"county": {
"type": "string",
"example": "Hampshire",
"required": false,
"description": "County"
},
"country": {
"type": "string",
"example": "United Kingdom",
"required": false,
"description": "Country"
},
"postcode": {
"type": "string",
"example": "PO7 7YH",
"required": false,
"description": "Postcode"
},
"address_1": {
"type": "string",
"example": "Work Address",
"required": false,
"description": "Name of the address"
},
"address_2": {
"type": "string",
"example": "Suite E, 5 The Briars",
"required": false,
"description": "Second line of the address"
},
"address_3": {
"type": "string",
"example": "Waterberry Drive",
"required": false,
"description": "Third line of the address"
},
"address_4": {
"type": "string",
"example": "The Innovative Centre",
"required": false,
"description": "Fourth line of the address"
},
"town_city": {
"type": "string",
"example": "Waterlooville",
"required": false,
"description": "Town/City"
}
}
],
"email_address": "gareth@plannrcrm.com",
"phone_number": "+443330509960",
"shared_owner_uuid": "617fa1d1-f2a6-4e1f-989e-32a0ccd56443",
"last_salary_increase": "2019-01-01",
"business_name": "My Business",
"business_year_end": "2019-01-01",
"business_value": 5000000,
"directors": "John Doe",
"shareholding_in_business": 50,
"profit": 5000000,
"turnover_history": [
{
"year": 2022,
"value": 5000000
},
{
"year": 2021,
"value": 4500000
}
],
"accountant_company_name": "My Company",
"accountant_email": "accountant@email.com",
"accountant_telephone_number": "0123456789",
"accountant_address": "1 My Street, My Town, My Country"
}
{
"uuid": "da9b3965-30ae-404c-b162-f65c59bc9ae2",
"income": {
"name": "My Salary",
"type": "salary",
"uuid": "dc452e3a-24ae-46eb-88b6-5351bc577fbd",
"amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"end_date": "2024-11-20",
"frequency": "annually",
"created_at": "2024-11-20T13:24:00+00:00",
"employment": "App\\Http\\Resources\\EmploymentResource",
"is_taxable": true,
"start_date": "2023-11-20",
"updated_at": "2024-11-20T13:24:00+00:00",
"amount_type": "net",
"shared_owner": "App\\Http\\Resources\\AccountResource",
"shared_owner_type": "individual"
},
"profit": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"status": "employed",
"address": {
"name": "Work Address",
"uuid": "ba15c775-c984-4df7-8e77-59e4ab66c78b",
"county": "Hampshire",
"country": "United Kingdom",
"accounts": "App\\Http\\Resources\\AccountResource",
"postcode": "PO7 7YH",
"address_1": "Suite E, 5 The Briars",
"address_2": "Waterberry Drive",
"address_3": "The Innovative Centre",
"address_4": "Waterlooville",
"town_city": "Waterlooville",
"created_at": "2024-11-20T13:24:00+00:00",
"updated_at": "2024-11-20T13:24:00+00:00",
"move_in_date": "2023-11-20"
},
"employer": "Plannr Technologies Ltd",
"ended_at": "2020-11-20T13:24:00+00:00",
"directors": "Susan F. Lancaster",
"job_title": "Senior financial adviser",
"created_at": "2024-11-20T13:24:00+00:00",
"occupation": "Financial Adviser",
"started_at": "2019-11-20T13:24:00+00:00",
"updated_at": "2024-11-20T13:24:00+00:00",
"phone_number": {
"name": "Work number",
"type": "phone_number",
"uuid": "02085bee-2de9-4b66-a06a-4fedd3069510",
"value": "+443330903630",
"accounts": "App\\Http\\Resources\\AccountResource",
"created_at": "2024-11-20T13:24:00+00:00",
"updated_at": "2024-11-20T13:24:00+00:00",
"phone_number_meta": {
"country": "GB",
"formatted": "0333 090 3630"
}
},
"shared_owner": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "85538cc8-d04b-4be5-a837-923a373812b3",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2024-11-20T13:24:00+00:00",
"first_name": "Gareth",
"updated_at": "2024-11-20T13:24:00+00:00",
"with_login": true,
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2024-11-20T13:24:00+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2024-11-20T13:24:00+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2024-11-20T13:24:00+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2024-11-20T13:24:00+00:00"
},
"business_name": "My Business",
"email_address": {
"name": "Work number",
"type": "phone_number",
"uuid": "34b4f3b7-218e-427c-9233-bf21300415ab",
"value": "+443330903630",
"accounts": "App\\Http\\Resources\\AccountResource",
"created_at": "2024-11-20T13:24:00+00:00",
"updated_at": "2024-11-20T13:24:00+00:00",
"phone_number_meta": {
"country": "GB",
"formatted": "0333 090 3630"
}
},
"business_value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"occupation_code": "FAC02774",
"accountant_email": "accountant@email.com",
"turnover_history": {
"year": 2020,
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
}
},
"business_year_end": "2020-12-31",
"is_business_owner": true,
"shared_owner_type": "individual",
"accountant_address": "23 Chollerton, Hexham, Northumberland, NE46 4TF",
"last_salary_increase": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"accountant_company_name": "My Accountant",
"shareholding_in_business": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"accountant_telephone_number": "+441234567890",
"percentage_of_business_shared": 50
}