action vocadb_post_api_users_current_albums_album_id { label: "post_api_users_current_albums_albumId" provider: vocadb method: POST path: "/api/users/current/albums/{albumId}" encoding: json input: { type: "object" properties: { albumId: { type: "integer" format: "int32" } collectionStatus: { type: "string" enum: ["Nothing", "Wishlisted", "Ordered", "Owned"] } mediaType: { type: "string" enum: ["PhysicalDisc", "DigitalDownload", "Other"] } rating: { type: "integer" format: "int32" } } required: ["albumId"] additionalProperties: false } output: { type: "string" } }