v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBService Accounts
Create a service account
Create a service account for your organization.
post/api/v2/service_accounts
Request body
Example request
{
"data": {
"attributes": {
"email": "jane.doe@example.com",
"service_account": true
},
"relationships": {
"roles": {
"data": [
{
"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d",
"type": "roles"
}
]
}
},
"type": "users"
}
}Response
OK
Example response
{
"data": {
"relationships": {
"org": {
"data": {
"id": "00000000-0000-beef-0000-000000000000",
"type": "orgs"
}
},
"other_orgs": {
"data": []
},
"other_users": {
"data": []
},
"roles": {
"data": [
{
"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d",
"type": "roles"
}
]
}
},
"type": "users"
},
"included": [
{
"type": "orgs"
}
]
}