openapi: 3.0.3 info: title: 7digital Artists User Management API description: The classic 7digital REST API (v1.2) provides access to the 7digital music catalogue (artists, releases, tracks, tags), user lockers, basket/checkout, payment, editorial, territories and IP-lookup. All operations are signed with OAuth 1.0 and scoped by a consumer key issued under a commercial agreement. version: '1.2' contact: name: 7digital / MassiveMusic Client Success url: https://docs.massivemusic.com/docs/support license: name: Commercial — 7digital / MassiveMusic url: https://docs.massivemusic.com/docs/sla x-last-validated: '2026-05-28' x-generated-from: documentation x-source-url: https://github.com/7digital/7digital-api/blob/master/assets/7digital-api-schema.json servers: - url: https://api.7digital.com/1.2 description: 7digital Public API v1.2 (production) security: - oauth1: [] tags: - name: User Management description: Create and manage user accounts on the partner's behalf. paths: /users: post: operationId: createUser summary: 7digital Create User description: Create a new user account. The OAuth 1.0 signature base string includes the parameters from the request entity-body if the body is single-part `application/x-www-form-urlencoded`. tags: - User Management security: - oauth1_two_legged: [] requestBody: required: true content: application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/CreateUserRequest' responses: '201': description: The newly created user. content: application/json: schema: $ref: '#/components/schemas/User' x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: CreateUserRequest: type: object properties: email: type: string format: email example: jane.smith@example.com password: type: string format: password example: P@ssw0rd123! firstName: type: string example: Jane lastName: type: string example: Smith country: type: string example: GB required: - email - password - country User: type: object properties: id: type: string example: '500123' email: type: string format: email example: jane.smith@example.com firstName: type: string example: Jane lastName: type: string example: Smith country: type: string example: GB createdAt: type: string format: date-time example: '2026-05-28T14:30:00Z' securitySchemes: oauth1: type: apiKey in: query name: oauth_consumer_key description: 7digital uses OAuth 1.0 signing. Every request MUST include `oauth_consumer_key` as either a query parameter or in the Authorization header. Sensitive operations require a 2-legged or 3-legged signature with a user access token. oauth1_two_legged: type: apiKey in: query name: oauth_consumer_key description: 2-legged OAuth 1.0 (partner-scoped — consumer key + secret only). oauth1_three_legged: type: apiKey in: query name: oauth_consumer_key description: 3-legged OAuth 1.0 (consumer key + secret plus a user access token + secret).