Meta API Live login call and response

  1. Login Service

    The login service allows you to generate a bearer token. This token will be needed to use the other Meta API endpoints.
    The token is valid for exactly 24 hours after authentication. This means that one call per 24 hours to the login service will give access the other services. It’s not allowed to refresh your token for each request. We will move towards a rate limiting mechanism which will limit the login attempts.You can cache the token and re-use it for any call within the 24 hour limit.

    CALL

    Method:

    • POST

    URL:

    Parameters:

    • debug true

    Authorization:

    • no auth

    Headers:

    • X-DPD-LOGIN: Your DelisID
    • X-DPD-PASSWORD: Your password
    • X-DPD-BUCODE: 034 for BE / 035 for LU

     

    RESPONSE

    Headers:

    • X-DPD-TOKEN 326-digit Token: Bearer Token
      This is a long string of characters called the Bearer Token. You will need this to authenticate yourself when using other Meta API endpoints.
Was this post helpful?(Required)