Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Latest commit

 

History

History
60 lines (44 loc) · 1.72 KB

_overview.html.md

File metadata and controls

60 lines (44 loc) · 1.72 KB

Overview

Helpful code snippets will show up in this column.

curl https://app.asana.com/api/1.0/users/me \
  -H "Authorization: Bearer 0/a7f89e98g007e0s07da763a"
const asana = require('asana');
<?php
require 'php-asana/vendor/autoload.php';
import asana
import com.asana.*;
require 'asana'
The Asana API is a RESTful interface, providing programmatic access to much of the data in the system. It provides predictable URLs for accessing resources, and uses built-in HTTP features to receive commands and return responses. This makes it easy to communicate from a wide variety of environments: command-line utilities, gadgets, and even the browser URL bar itself.

The API accepts JSON or form-encoded content in requests and returns JSON content in all of its responses, including errors. Only UTF-8 character encoding is supported for both requests and responses.

For quick access to REST API resources and object schemas, see:

Was this section helpful? Yes No