Users
The users
resource accesses and updates your user profile. You can also access reports you own.
You cannot use this resource to create a new profile. You must create a new profile on the Developer Portal.
Profile
You must use the mage_id
associated with the client application in your developer account when making request to these endpoints. You can get this ID when obtaining a session token.
1
2
3
GET /rest/v1/users/:mage_id
GET /rest/v1/users/:mage_id?style=summary
PUT /rest/v1/users/:mage_id
Get profile data
By default, requests for profile data return all fields. You can limit the amount of data that the request returns by using the style=summary
option.
The following example shows the request/response body for retrieving all profile data:
Request
1
2
3
curl -X GET \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
https://developer-api.magento.com/rest/v1/users/MAG123456789
Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"mage_id": "MAG123456789",
"first_name": “Chuck”,
"last_name": “Norris”,
"email": cnorris@example.com",
"screen_name": “ninjachuck”,
"has_completed_profile": true,
"has_accepted_tos": true,
"profile_image_artifact": {
"file_upload_id": "uuid-001-234567-123.461",
"filename": “chuck.png",
"content_type": "image.png",
"url": “https://static-mp.magento.com/user/68/f3/68f360d3516f594fc957c4179ed4a7a872911f07/pub/d9/c2/d9c23dd795a5faaab603b6b5965eca8a6d9430f2/chuck.png”,
"size": 1234,
"file_hash": "d5db29cd03a2ed055086cef9c31c252b4587ffff",
"malware_status": "pass"
},
"tos_accepted_version": "1.0",
"tos_accepted_date": "2017-11-16 01:23:45",
"is_company": false,
"vendor_name": “chucknorris”,
"partner_level": 4,
"locale": "en-US",
"timezone": "UTC",
"payment_type": 1,
"payment_info": {"paypal_email“ : “cnorris@example.com"},
"taxpayer_type": 2,
"tax_review_status": 3;
"tax_withhold_percent": 0.00,
"extension_share_percent": 0.7,
"theme_share_percent": 0.7,
"install_share_percent": 0,
"support_share_percent": 0,
"personal_profile": {
"bio", “Sets ants on fire using a magnifying glass. At night.”,
"last_logged_in": "2017-09-30 8:09:10",
"created_at": "2016-02-29 14:04:59",
"modified_at": "2017-11-16 01:23:45",
"social_media_info": {
"twitter": “@chucknorrismagento”,
"stackexchange_url": "",
"facebook_url": "",
"linkedin_url": "",
"github_username": ""
},
"addresses": [
{
"address_key": 1,
"address_line_1": "123 Lonestar Way”,
"state": “Texas”,
"country": “USA”,
"postal_code": “77777”,
"phone": “555-1234-5678”,
"country_code": "+1",
"is_primary": true
}
]
},
"company_profile": {
"name": “Ninja Norris Inc.”,
"bio": “Ninja Extension Builder.”,
"website_url": "https://www.example.com/”,
"primary_email": "cnorris@example.com",
"support_email": "support@example.com”,
"created_at": "2016-02-29 14:04:59",
"modified_at": "2017-09-30 01:23:45",
"social_media_info": {
"twitter": “@chucknorrismagento”,
"stackexchange_url": "",
"facebook_url": "",
"linkedin_url": "",
"github_username": ""
},
"addresses": [
{
"address_key": 1,
"address_line_1": "123 Lonestar Way”,
"state": “Texas”,
"country": “USA”,
"postal_code": “77777”,
"phone": “555-1234-5678”,
"country_code": "+1",
"is_primary": true
}
]
}
}
The following example shows the request/response body for retrieving a subset of profile data:
Request
1
2
3
curl -X GET \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
https://developer-api.magento.com/rest/v1/users/MAG123456789?style=summary
Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"mage_id": "MAG123456789",
"first_name": “Chuck”,
"last_name": “Norris”,
"email": “cnorris@example.com",
"screen_name": “ninjachuck”,
"has_completed_profile": true,
"has_accepted_tos": true,
"profile_image_artifact": {
"file_upload_id": "uuid-001-234567-123.461",
"filename": “chuck.png",
"content_type": "image.png",
"url": “https://static-mp.magento.com/user/68/f3/68f360d3516f594fc957c4179ed4a7a872911f07/pub/d9/c2/d9c23dd795a5faaab603b6b5965eca8a6d9430f2/chuck.png”,
"size": 1234,
"file_hash": "d5db29cd03a2ed055086cef9c31c252b4587ffff",
"malware_status": "pass"
},
}
Update profile data
You can update all profile data fields, but you only need to include the fields you want to modify in the request body.
The following example shows a request to update the personal profile bio field:
1
2
3
4
5
6
{
“action” : “publish”,
“personal_profile” : {
“bio” : “I can make a fire by rubbing two ice cubes.”
}
}
The action
field specifies which update operation to perform:
publish
—The default if not specified. Publishes the profile to the relevant Marketplace Store Partners page.draft
—The update is saved on the Developer Portal, but not published.
Request
1
2
3
4
5
curl -X PUT \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
-H 'Content-Type: application/json' \
-d ‘{ “action: “publish”, “personal_profile” : { “bio” : “I can make a fire by rubbing two ice cubes.“ } }’ \
https://developer-api.magento.com/rest/v1/users/MAG123456789
A 200 OK HTTP response code indicates a successful update.
Keys
Use these APIs to manage Magento 1 and Magento 2 package access keys.
1
2
3
4
GET /rest/v1/users/:mage_id/keys
POST /rest/v1/users/:mage_id/keys
PUT /rest/v1/users/:mage_id/keys/:url_encoded_label_of_m2_key
DELETE /rest/v1/users/:mage_id/keys/:url_encoded_label_of_m2_key
Get keys
Use this API to return the keys associated with the specified mage_id
.
1
GET /rest/v1/users/:mage_id/keys
The following table lists available query parameters, all of which are optional:
Parameter | Type | Required | Description |
---|---|---|---|
type | string | no | Type of keys requested: ‘m1’ - Magento 1 product keys, ‘m2’ - Magento 2 composer repo keys, ‘all’ - Both M1 and M2 keys (default) |
label | string | no | The url encoded value of the key label; only valid for ‘m2’ type. |
The following example shows the request/response body for retrieving keys without any query parameters:
Request
1
2
3
curl -X GET \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
https://developer-api.magento.com/rest/v1/users/MAG123456789/keys
Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"m2": [
{
"label": “main_key”,
"user_key": "d41d8cd98f00b204e9800998ecf8427e",
"password_key": "12cbdcd3332eb8f166f62ee1a9bd33d0",
"is_enabled": true
},
{
"label": "key_for_bob",
"user_key": "4b335b25f8eb3449e7e222e8f9e052b0",
"password_key": "9ca8abe7376f451bde40513474c13c3c",
"is_enabled": false
}
],
"m1": [
{
“product_name” : “acme/one-click-checkout-1.0.0”,
“product_key” : “https://connect20.magentocommerce.com/e8c258702e443c509b42fc44a49b83b0/acme+one-click-checkout-1.0.0”
}
]
}
Magento 2 keys
- Each Composer key-pair has unique
label
andis_enabled
flags to indicate whether the key is enabled. - A Composer key-pair is identified by
user_key
(username) andpassword_key
(password) when prompted for Composer credentials.
Magento 1 keys
- Provides a list of product names and associated product keys, which can be used in the Magento Connect Manager to install extensions.
- You cannot create, update, or delete these keys.
Create keys
Use this API to create new Magento 2 Composer key-pairs. You must specify a unique label for each key. You can create multiple key-pairs in a single request.
1
POST /rest/v1/users/:mage_id/keys
1
2
3
4
5
6
7
8
9
10
{
"m2": [
{
"label": "key_for_alice"
},
{
"label": "key_for_charlie"
}
]
}
Request
1
2
3
4
5
curl -X POST \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
-H 'Content-Type: application/json' \
-d ‘{ “m2”: [ { “label” : “key_for_alice” }, { “label” : “key_for_charlie” } ] }’ \
https://developer-api.magento.com/rest/v1/users/MAG123456789/keys
Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"m2": [
{
"label": “key_for_alice”,
"user_key": "5c75f32248bdd335dc8d8d5a3e5cb52e",
"password_key": "44db283cbb5fdf2c25cbc9352c2a75eb",
"is_enabled": true,
“code” : 200,
“message” : “Success”
},
{
"label": "key_for_charlie”,
"user_key": "19ba9488ff99a9346bdeb39ad4ab1a26",
"password_key": "82167d38238911d212cc02a96f3f66f9",
"is_enabled": true,
“code” : 200,
“message” : “Success”
}
]
}
- The API returns a batch response for each label.
- A 200 OK HTTP response code indicates a successful update.
- Any non-200 HTTP response code indicates an error. See the
message
field for details.
Update keys
Use this API to enable or disable a Magento 2 Composer key-pair. You must specify the key-pair in the request using a URL-encoded string.
1
PUT /rest/v1/users/:mage_id/keys/:url_encoded_label_of_m2_key
Request
1
2
3
4
5
curl -X PUT \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
-H 'Content-Type: application/json' \
-d ‘{ “m2” : [ { “is_enabled” : true } ] }’ \
https://developer-api.magento.com/rest/v1/users/MAG123456789/keys/key_for_bob
Response
1
2
3
4
5
6
7
8
9
10
{
"m2": [
{
"label": "key_for_bob",
"user_key": "4b335b25f8eb3449e7e222e8f9e052b0",
"password_key": "9ca8abe7376f451bde40513474c13c3c",
"is_enabled": true
}
]
}
Delete keys
This API can be used to remove a Magento 2 composer key-pair identified by the given url-encoded label.
1
DELETE /rest/v1/users/:mage_id/keys/:url_encoded_label_of_m2_key
The following curl example illustrates the call to be made:
Request
1
2
3
curl -X DELETE \
-H 'Authorization: Bearer baGXoStRuR9VCDFQGZNzgNqbqu5WUwlr.cAxZJ9m22Le7' \
https://developer-api.magento.com/rest/v1/users/MAG123456789/keys/key_for_charlie
A 204 No Content HTTP response code indicates a successful update.
Reports
Use this API to retrieve reports owned by a specific user. Reports contain information about extensions sales, payout status, aggregate sales, refund data, and more.
1
2
3
4
GET /rest/v1/users/:mage_id/reports/pageviews
GET /rest/v1/users/:mage_id/reports/totals
GET /rest/v1/users/:mage_id/reports/sales
GET /rest/v1/users/:mage_id/reports/refunds
The Reports API specification is under design review. More details will be announced in the future..