This is a backend microservice to store all pertinent data for Agent Services Accounts.
sbt test it/test
sm2 --start AGENT_ONBOARDING
sm2 --stop AGENT_SUBSCRIPTION
sbt run
This endpoint is used to retrieve the change of details request for the given ARN.
- 200 OK with JSON body
Example body
{
"arn": "AARN1234567",
"timeSubmitted": "2024-08-21T12:34:56.123456Z"
}
- 404 Not Found
This endpoint is used to create/update a change of details request. It requires a JSON body with the ARN of the agent and an Instant of the time the request was submitted.
{
"arn": "AARN1234567",
"timeSubmitted": "2024-08-21T12:34:56.123456Z"
}
- 204 NoContent
This endpoint is used to delete the change of details request for the given ARN.
- 204 NoContent
- 404 Not Found
This code is open source software licensed under the Apache 2.0 License.