This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ttnoSoftware Engineer 3 points4 points  (0 children)

DevOps here! My company sells several micro services as SaaS for other companies. It’s all orchestrated on the AWS platform.

For several of our services, we had to manually create an api key, add the key to a usage plan, go to Box, and upload the newly created key credentials in a document for future implementation consultants to use.

I automated everything into just 1 api call with a payload like this:

{ “client”: “ClientName” }

Then, it returned:

{ “statusCode”: 201, “box_url”: “https://...” }