Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Document name
  • Locales with status information for deliverable

URL

(GET) /persons/{id}

PARAMETERS

The message body contains a JSON object:

iduidUnique Id of person of that we want get informations.



RESULTS

The message body contains a JSON object:

...

Each item in labels has these properties:

... 
... 

 

EXAMPLES

See this example:

Code Block
{
	"company": {
		"id": 1,
		"name": "Wordbee",
		"address": "Wordbee"
	},
	"person": {
		"id": 1,
		"firstname": "Claude",
		"lastname": "Pont",
		"code": "CP",
		"role": null,
		"phone": "",
		"phoneMobile": null,
		"email": "user@provider.com",
		"emailIsPrivate": false,
		"isActive": true,
		"picture": "/api/media/persons/1/icon",
		"link": "http://xxx/a/devel/Company/Account.aspx?x=xxxxxxxxxx",
		"labels": [],
		"profile": "Administrator",
		"workActivity": {
			"standard": 0,
			"codyt": 0
		},
		"comments": "",
		"customFields": [{
				"type": 1,
				"title": "Status",
				"value": null
			}, {
				"type": 2,
				"title": "Hobby",
				"value": null
			}, {
				"type": 5,
				"title": "Checkbox",
				"value": null
			}
		]
	}
}

...