Deprecated End Points
Create an API user
Create an API user
post/v3/api_users
Request body
Example request
{
"name": "Carl Johnson",
"username": "carljohnson",
"email": "carljohnson@grove.street",
"avatar": "https://affinda-api.s3.amazonaws.com/media/user-avatar.png?AWSAccessKeyId=KEY&Signature=SIG",
"organization": "mEFayXdO"
}Response
Successfully created an API user. The API key is shown once in this response and will not be shown again in subsequent retrieval requests."
Example response
{
"id": 1,
"name": "Carl Johnson",
"username": "carljohnson",
"email": "carljohnson@grove.street",
"avatar": "https://affinda-api.s3.amazonaws.com/media/user-avatar.png?AWSAccessKeyId=KEY&Signature=SIG",
"organizations": [
{
"identifier": "mEFayXdO",
"name": "Grove Street King"
}
]
}