• Account Management/
    Using Account Management API/
    Get an Account

    Get an Account

    GET Get an Account

    https://api.moltin.com/v2/accounts/:id
    

    Parameters

    Path parameters

    NameRequiredTypeDescription
    idRequiredstringThe ID of the account you want to retrieve.

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token required to get access to the API.

    Request Examples

    Curl

    curl -X GET https://api.moltin.com/v2/accounts/:id \
         -H "Authorization: Bearer XXXX"
    

    JavaScript SDK

    const MoltinGateway = require("@moltin/sdk").gateway;
    const Moltin = MoltinGateway({
        client_id: "X",
        client_secret: "X",
    });
    const accountId = "00000000-0000-0000-0000-000000000000";
    Moltin.Accounts.Get(accountId).then((acc) => {
        // Do something
    });
    

    Response Example

    200 OK

    {
        "data": {
            "id": "deb6b25f-8451-4211-9a22-95610333df23",
            "type": "account",
            "name": "acc-name",
            "legal_name": "acc-legal-name",
            "registration_id": "00000000-0000-1000-8000-000f00000300",
            "relationships": {
                "parent": {
                    "data": {
                        "id": "96b1f750-55d3-4768-a3f8-adffba694a2c",
                        "type": "account"
                    }
                },
                "ancestors": [
                    {
                        "data": {
                            "id": "96b1f750-55d3-4768-a3f8-adffba694a2c",
                            "type": "account"
                        }
                    }
                ]
            },
            "meta": {
                "timestamps": {
                    "created_at": "2021-02-23T09:40:33.882Z",
                    "updated_at": "2021-02-23T09:40:33.882Z"
                }
            }
        },
        "links": {
            "self": "https://api.moltin.com/v2/accounts/deb6b25f-8451-4211-9a22-95610333df23"
        }
    }
    

    Was this helpful?

    Previous
    Get All Accounts